Skip to content

Commit

Permalink
Merge pull request #345 from Tidelaw/fix-footer-gap
Browse files Browse the repository at this point in the history
fix footer gap on basics page
  • Loading branch information
DonnySolana committed Jun 24, 2023
2 parents 6124d35 + ff2ae6f commit 4814450
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/ContentContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ interface Props {
export const ContentContainer: React.FC<Props> = ({ children }) => {

return (
<div className="flex-1 drawer h-52">
<div className="flex-1 drawer h-52 flex-col justify-between">
<input id="my-drawer" type="checkbox" className="grow drawer-toggle" />
<div className="items-center drawer-content">
<div className="items-center drawer-content flex flex-col justify-between">
{children}
</div>
{/* SideBar / Drawer */}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import Link from 'next/link';
import Image from 'next/image';
export const Footer: FC = () => {
return (
<div className="relative mb-40 mt-40">
<footer className="border-t-2 border-[#141414] bg-black hover:text-white absolute w-full" >
<div className="flex">
<footer className="border-t-2 border-[#141414] bg-black hover:text-white w-screen" >
<div className="ml-12 py-12 mr-12">
<div className="grid grid-cols-2 md:grid-cols-6 gap-2 md:gap-8 md:space-x-12 relative">
<div className='flex flex-col col-span-2 mx-4 items-center md:items-start'>
Expand Down

0 comments on commit 4814450

Please sign in to comment.