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

1331 fix ipad design #1332

Merged
merged 6 commits into from
Sep 24, 2024
Merged
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/Header/Navbar.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Navbar = () => {
return (
<header>
<nav id="header" className="top-0 z-50 w-full py-1 bg-white ">
<div className="container flex md:flex-wrap flex-col md:flex-row items-center justify-between px-6 py-3 mx-auto mt-0 md:min-w-96">
<div className="container flex flex-col md:flex-row items-center justify-between px-6 py-3 mx-auto mt-0 md:min-w-96">
<div
className="order-3 hidden w-full md:flex md:items-center md:w-auto md:order-1"
id="menu"
Expand All @@ -40,7 +40,7 @@ const Navbar = () => {
</li>
</ul>
</div>
<div className="order-1 md:order-2">
<div className="order-1 md:order-2 md:hidden lg:block">
<Link href="/">
<span className="flex items-center text-xl font-bold tracking-wide text-gray-800 no-underline hover:no-underline ">
<svg
Expand Down
Loading