Skip to content

Commit

Permalink
fix: Navbar.vue backdrop filter error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lavi27 committed Nov 26, 2023
1 parent edf4035 commit 2981e59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,9 @@
<transition appear name="fade" mode="out-in">
<div
v-if="showServerMenu"
class="serverMenu absolute flex flex-col mt-3 w-full p-1 rounded-lg backdrop-blur-md text-white text-sm border border-slate-700/[.2] gap-0.5 overflow-y-scroll"
class="serverMenu absolute flex flex-col mt-3 w-full p-1 rounded-lg bg-zinc-950 bg-opacity-60 text-white text-sm border border-slate-700/[.2] gap-0.5 overflow-y-scroll"
>
<!-- backdrop-blur-md -> bg-zinc-950 bg-opacity-60 -->
<div v-for="(server, index) in server" v-bind:key="index">
<NuxtLink
:to="'/' + $i18n.locale + '/' + (server.now ? 'dashboard' : 'bridge') + '?id=' + server.id"
Expand Down

0 comments on commit 2981e59

Please sign in to comment.