Skip to content

Commit

Permalink
fix: ensure navigation links are visible on light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Jan 14, 2025
1 parent c0edfb4 commit 013787f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/ui-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function UiLayout({ children, links }: { children: ReactNode; links: { la

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

0 comments on commit 013787f

Please sign in to comment.