Skip to content

Commit

Permalink
fix: improve nav readability
Browse files Browse the repository at this point in the history
  • Loading branch information
veryCrunchy committed Apr 8, 2024
1 parent 66e8ed0 commit cc0aedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const navs: { name: string; path: string }[] = [
:key="nav.path"
:href="nav.path"
:class="{ underline: nav.path === route.fullPath }"
class="text-white hover:text-gray-100 text-xl underline-offset-6"
class="text-gray-300 hover:text-gray-200 text-xl underline-offset-6"
>{{ nav.name }}</NuxtLink
>
</div>
Expand All @@ -64,7 +64,7 @@ const navs: { name: string; path: string }[] = [
></NuxtImg>
</div>
</nav>
<NuxtPage />
<NuxtPage :user="user" />
</div>
</template>
<style>
Expand Down

0 comments on commit cc0aedc

Please sign in to comment.