Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit 09ef66e

Browse files
committed
fix: ensure navigation links are visible on light theme
1 parent 61d20fc commit 09ef66e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/ui-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function UiLayout({ children, links }: { children: ReactNode; links: { la
1111

1212
return (
1313
<div className="h-full flex flex-col">
14-
<div className="navbar bg-base-300 text-neutral-content flex-col md:flex-row space-y-2 md:space-y-0">
14+
<div className="navbar bg-base-300 dark:text-neutral-content flex-col md:flex-row space-y-2 md:space-y-0">
1515
<div className="flex-1">
1616
<Link className="btn btn-ghost normal-case text-xl" to="/">
1717
<img className="h-4 md:h-6" alt="Logo" src="/logo.png" />

0 commit comments

Comments
 (0)