Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hot Fix Mobile Navbar #170

Merged
merged 2 commits into from
Jan 21, 2024
Merged
Changes from 1 commit
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 apps/web/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Layout: React.FC<LayoutProps> = ({
content="/_next/image?url=%2Fog-image.png&w=640&q=75"
/>
</Head>
<header className="hidden items-center justify-around bg-[#2d3142] p-2 text-white md:flex">
<header className="m hidden items-center justify-around bg-[#2d3142] p-2 text-white md:flex">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this m?

<div className="flex w-3/5 max-w-3xl justify-around">
<Link href="/home" className="flex">
<AiFillHome className="mr-1.5 text-2xl" />
Expand Down Expand Up @@ -141,7 +141,7 @@ const Layout: React.FC<LayoutProps> = ({
<FaShare className="mr-1.5 mt-1" /> {translation("share button")}
</button>
<main className="mb-14 min-h-screen md:mb-0">{children}</main>
<div className="fixed bottom-0 left-0 z-50 block h-16 w-full border-t border-gray-200 bg-white md:hidden dark:border-gray-600 dark:bg-gray-700">
<div className="fixed bottom-0 left-0 z-50 block h-24 w-full border-t border-gray-200 bg-white pb-4 dark:border-gray-600 dark:bg-gray-700 md:hidden">
<div className="mx-auto grid h-full max-w-lg grid-cols-4 font-medium">
<Link
href="/home"
Expand Down
Loading