Skip to content
Snippets Groups Projects
Commit 27536701 authored by Дмитрий Малюгин's avatar Дмитрий Малюгин :clock4:
Browse files

fix: bug in 'Drawer'

parent 7445eb58
No related branches found
No related tags found
1 merge request!6Finish "UI-library v1.0.0"
...@@ -107,13 +107,13 @@ const drawerWidth = computed(() => { ...@@ -107,13 +107,13 @@ const drawerWidth = computed(() => {
opacity: 0; opacity: 0;
} }
.drawerBackgroundOpened { .drawerBackgroundOpened {
z-index: 30; z-index: 200;
opacity: 1; opacity: 1;
} }
.drawer { .drawer {
width: v-bind(drawerWidth); width: v-bind(drawerWidth);
position: fixed; position: fixed;
z-index: 31; z-index: 201;
height: 100vh; height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment