alternative tangled frontend (extremely wip)
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: spacing

serenity 6f91a304 cc017b67

+7 -5
+1 -1
src/components/Nav/NavBarAuthed.tsx
··· 37 37 className="pl-2 text-lg font-semibold" 38 38 /> 39 39 </div> 40 - <div className="flex max-h-12 items-center gap-1"> 40 + <div className="flex max-h-12 items-center gap-1 mr-3"> 41 41 <div> 42 42 {isAvatarLoading ? ( 43 43 <Loading />
+1 -1
src/components/Nav/NavBarUnauthed.tsx
··· 16 16 className="text-lg font-semibold pl-2" 17 17 /> 18 18 </div> 19 - <div className="flex items-center gap-1"> 19 + <div className="flex items-center gap-1 mr-3"> 20 20 <UnderlineIconRouterLink 21 21 to="/login" 22 22 label="Sign In"
+1 -1
src/routes/__root.tsx
··· 48 48 <head> 49 49 <HeadContent /> 50 50 </head> 51 - <body className="bg-base text-text"> 51 + <body className="bg-base text-text max-w-screen overflow-x-hidden"> 52 52 <Providers>{children}</Providers> 53 53 <TanStackDevtools 54 54 config={{
+3 -1
src/routes/_layout.tsx
··· 10 10 return ( 11 11 <div className="flex min-w-screen flex-col items-center justify-center"> 12 12 <NavBar /> 13 - <Outlet /> 13 + <div className="min-h-screen"> 14 + <Outlet /> 15 + </div> 14 16 <Footer /> 15 17 </div> 16 18 );
+1 -1
src/routes/_layout/login.tsx
··· 16 16 17 17 return ( 18 18 <> 19 - <div className="flex w-full justify-center pt-8"> 19 + <div className="flex w-screen justify-center pt-8"> 20 20 <SignIn /> 21 21 </div> 22 22 </>