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

Update styling #360

Merged
merged 1 commit into from
May 31, 2024
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: 0 additions & 4 deletions frontend/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ body {
@apply bg-background;
}

p {
@apply text-[#000000DF];
}

h1 {
@apply text-[26px] sm:text-[30px] md:text-[36px] font-semibold tracking-tight mb-8 mt-12;
}
Expand Down
6 changes: 3 additions & 3 deletions frontend/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac
h-header-mobile pb-2
sm:h-header-tablet sm:pb-4
md:h-header-desktop md:pb-6
z-30
z-40
`}>
<Header/>
</header>

<div className="relative">
<div className={"relative"}>
{/* Flower Nav - Only shown on desktop, desktop wide, desktop ultra-wide viewports */}
<nav className="fixed right-0 hidden lg:block z-20">
<nav className="fixed right-0 hidden lg:block z-10">
<FlowerNav/>
</nav>

Expand Down