Skip to content

Commit

Permalink
fix(NavigationDrawer): adjust z-index (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicenturi committed Jun 10, 2024
1 parent 91507da commit 1045dfe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ const on = computed(() => ({

<style lang="scss" module>
.overlay {
@apply absolute top-0 left-0 w-full h-full bg-black/[0.5] z-[7];
@apply absolute top-0 left-0 w-full h-full bg-black/[0.5] z-[10000];
}
.content {
@apply transition-all top-0 h-full fixed text-rui-text bg-white z-[7];
@apply transition-all top-0 h-full fixed text-rui-text bg-white z-[10000];
&.left {
@apply -translate-x-full left-0;
Expand Down

0 comments on commit 1045dfe

Please sign in to comment.