Skip to content

Commit

Permalink
chore: improve navabr colors
Browse files Browse the repository at this point in the history
  • Loading branch information
jrgarciadev committed Nov 16, 2024
1 parent 3f1a11a commit 7dcb718
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion apps/docs/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,12 @@ export const Navbar: FC<NavbarProps> = ({children, routes, mobileRoutes = [], sl
<GithubIcon />
<span className="text-small font-medium">{githubInfo.stars.formatted}</span>
</Link>
<ThemeSwitch className="border-1 border-default-200 rounded-full h-full min-w-10 min-h-10 flex items-center justify-center" />
<ThemeSwitch
className="border-1 border-default-200 rounded-full h-full min-w-10 min-h-10 flex items-center justify-center"
classNames={{
wrapper: "!text-default-400 dark:!text-default-500",
}}
/>
</NavbarItem>
{/* <NavbarItem className="hidden md:flex">
<Button
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/components/theme-switch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const ThemeSwitch: FC<ThemeSwitchProps> = ({className, classNames}) => {
"rounded-lg",
"flex items-center justify-center",
"group-data-[selected=true]:bg-transparent",
"!text-default-600 dark:!text-default-500",
"!text-default-600 dark:!text-default-300",
"pt-0",
"px-0",
"mx-0",
Expand Down

0 comments on commit 7dcb718

Please sign in to comment.