mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-28 14:16:41 +07:00
added tag searching router
This commit is contained in:
parent
4da04bb970
commit
f2289f4530
5 changed files with 80 additions and 0 deletions
26
src/containers/sidebars/SidebarWrapper/styles.module.scss
Normal file
26
src/containers/sidebars/SidebarWrapper/styles.module.scss
Normal file
|
@ -0,0 +1,26 @@
|
|||
.wrapper {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(255, 0, 0, 0.3);
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
z-index: 20;
|
||||
justify-content: flex-end;
|
||||
|
||||
@include can_backdrop {
|
||||
background: transparentize($content_bg, 0.15);
|
||||
-webkit-backdrop-filter: blur(15px);
|
||||
backdrop-filter: blur(15px);
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 0 0 33vw;
|
||||
width: 33vw;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
background: $content_bg;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue