Skip to content

Commit 8b4fbb9

Browse files
committed
Update background styles in LandingPageNavbar and RootComponent for improved aesthetics
1 parent a44ca99 commit 8b4fbb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/navigation/LandingPageNavbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function LandingPageNavbar({}: LandingPageNavbarProps) {
77
const isLoading = useRouterState({ select: (s) => s.status === "pending" });
88

99
return (
10-
<header className="sticky top-0 z-30 flex w-full flex-col items-center justify-between bg-base-200">
10+
<header className="sticky top-0 z-30 flex w-full flex-col items-center justify-between bg-base-200/520">
1111
<nav className="flex h-full w-full items-center justify-between gap-5 px-5 p-2">
1212
<Link to="/" className="btn btn-link btn-sm">
1313
<img src="/colabs.png" alt="logo" className="h-8 w-fit" />

src/routes/-components/RootComponent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { TanStackRouterDevtools } from "./RouterDevttols";
66

77
export function RootComponent() {
88
return (
9-
<div className="content min-h-screen bg-gradient-to-r from-base-100 via-primary/20 to-base-100 w-full">
9+
<div className="content min-h-screen bg-gradient-to-r from-base-100 via-primary/20 dark:via-primary/20 to-base-100 w-full">
1010
<Outlet />
1111
<ReactQueryDevtools buttonPosition="bottom-right" />
1212
<TanStackRouterDevtools position="bottom-left" />

0 commit comments

Comments
 (0)