Skip to content

Commit

Permalink
Fix unreadable submenu
Browse files Browse the repository at this point in the history
  • Loading branch information
NHAS committed Nov 23, 2024
1 parent 4389b5a commit b843f8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions adminui/frontend/src/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ async function logout() {
<span>Advanced</span>
</label>

<ul tabindex="0" class="menu-dropup dropdown-content rounded-box w-52 bg-base-100 p-2 pb-4 text-black shadow">
<ul tabindex="0" class="menu dropdown-content rounded-box w-52 bg-base-100 p-2 pb-4 text-black shadow">
<li v-for="link in debugPageLinks" :key="link.name" :class="route.path == link.to ? 'bordered' : 'hover-bordered'">
<RouterLink :to="link.to" :class="route.path == link.to ? 'active' : ''">
<RouterLink :to="link.to">
<span class="w-6 text-center"><font-awesome-icon :icon="link.icon" /></span>

{{ link.name }}
Expand All @@ -166,8 +166,8 @@ async function logout() {
</label>

<ul tabindex="0" class="menu dropdown-content rounded-box w-52 bg-base-100 p-2 pb-4 text-black shadow">
<li>
<RouterLink to="/account">
<li :class="route.path == '/account' ? 'bordered' : 'hover-bordered'">
<RouterLink to="/account" >
<span><font-awesome-icon :icon="Icons.User" /></span>
<span>My account</span>
</RouterLink>
Expand Down

0 comments on commit b843f8d

Please sign in to comment.