Skip to content

Commit 918eb2e

Browse files
Fixed 38
1 parent 556406f commit 918eb2e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

components/NavbarDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Transition>
66
<section
77
v-if="show"
8-
class="w-screen h-screen fixed left-0 top-0 z-50"
8+
class="w-screen h-screen fixed left-0 top-0 z-100"
99
@click.self="closeMenu"
1010
>
1111
<aside class="h-full w-72 bg-tertiary p-[5vw] sm:p-9 shadow-2xl">

tailwind.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ module.exports = {
4242
info: 'var(--color-info)',
4343
warning: 'var(--color-warning)',
4444
},
45+
extend: {
46+
zIndex: {
47+
'100': '100',
48+
}
49+
},
4550
},
4651
plugins: [
4752
plugin(function ({ addBase, addComponents, addUtilities, theme }) {

0 commit comments

Comments
 (0)