From 80bed9b4dcf57619c12c90f10445ebc67da49a7c Mon Sep 17 00:00:00 2001 From: Aaron William Po Date: Sat, 8 Apr 2023 02:11:13 -0400 Subject: [PATCH 1/2] Style updates fix navbar to remain sticky, add fade in to layout component, update font to Space Grotesk --- components/ui/Layout.tsx | 8 ++++---- components/ui/Navbar.tsx | 8 ++++---- pages/_app.tsx | 7 +++---- pages/login/index.tsx | 6 +++--- prisma/DBClient.ts | 2 +- prisma/seed/create/createNewBeerImages.ts | 2 +- prisma/seed/create/createNewBreweryImages.ts | 2 +- 7 files changed, 17 insertions(+), 18 deletions(-) diff --git a/components/ui/Layout.tsx b/components/ui/Layout.tsx index d1446e1..3ff6558 100644 --- a/components/ui/Layout.tsx +++ b/components/ui/Layout.tsx @@ -4,10 +4,10 @@ import Navbar from './Navbar'; const Layout: FC<{ children: ReactNode }> = ({ children }) => { return (
-
- -
-
{children}
+ +
+ {children} +
); }; diff --git a/components/ui/Navbar.tsx b/components/ui/Navbar.tsx index a75639f..47ebece 100644 --- a/components/ui/Navbar.tsx +++ b/components/ui/Navbar.tsx @@ -42,10 +42,10 @@ const Navbar = () => { ]; return ( -