* style: drawer-cover color updated for all tagging drawers * feat: Update TagList component when a tag is updated on Manage tags drawer * feat: Refactor TagCount to be able to refresh the count * feat: Sync tag count in units
35 lines
495 B
SCSS
35 lines
495 B
SCSS
// studio - elements - side drawers
|
|
// ====================
|
|
|
|
.drawer-cover {
|
|
@extend %ui-depth3;
|
|
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
}
|
|
|
|
.drawer-cover.gray-cover {
|
|
background: rgba(112, 112, 112, 0.8);
|
|
}
|
|
|
|
.drawer {
|
|
@extend %ui-depth4;
|
|
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 33.33vw;
|
|
height: 100vh;
|
|
background-color: $gray-l4;
|
|
}
|
|
|
|
body.drawer-open {
|
|
overflow: hidden;
|
|
}
|