Skip to content

Commit

Permalink
fix: navbar color
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Dec 31, 2024
1 parent 4d57dd4 commit 41d40fd
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/components/app-navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ const toggleDark = useToggle(isDark)
<!-- logo -->
<div h-60px flex items-center>
<router-link to="/">
<div cursor-pointer text="black 2xl">
<div i-carbon-home text="[var(--text-color)]" />
</div>
<div i-carbon-home cursor-pointer text-2xl text-black />
</router-link>
</div>

Expand All @@ -25,15 +23,13 @@ const toggleDark = useToggle(isDark)
<div
cursor-pointer
i="dark:carbon-moon carbon-sun"
text="black 2xl"
text="black! 2xl"
@click="toggleDark()"
/>

<!-- github -->
<a target="_blank" href="https://github.com/opensource-f2f">
<div text="black 2xl" cursor-pointer>
<div i-carbon-logo-github text="[var(--text-color)]" />
</div>
<div i-carbon-logo-github cursor-pointer text-2xl text-black />
</a>

<!-- collapsible menu -->
Expand Down

0 comments on commit 41d40fd

Please sign in to comment.