Skip to content

Commit

Permalink
fix: resolve missing bg color on hover for projects nav on production
Browse files Browse the repository at this point in the history
  • Loading branch information
tmthyadms committed Oct 15, 2023
1 parent b3ad425 commit a34a8dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/the-header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</label>
<ul tabindex="0" class="dropdown-content menu menu-design p-2 w-52">
<li v-for="(subsection, index) in section.type" :key="index">
<a :href="subsection.href" class="font-semibold uppercase">{{
<a :href="subsection.href" class="subsection-desktop">{{
subsection.title
}}</a>
</li>
Expand Down Expand Up @@ -173,4 +173,8 @@ export default {
.menu-design {
@apply bg-base-100 rounded-box shadow-inner;
}
.subsection-desktop {
@apply hover:bg-base-content/[0.1] font-semibold uppercase;
}
</style>

0 comments on commit a34a8dd

Please sign in to comment.