Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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