mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
24 lines
443 B
SCSS
24 lines
443 B
SCSS
.component_menubar{
|
|
background: var(--dark);
|
|
color: #f1f1f1;
|
|
border-bottom: 1px solid var(--color);
|
|
|
|
.component_container{
|
|
padding: 8px 0;
|
|
color: #f1f1f1;
|
|
font-size: 0.9em;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.menubar-appear{
|
|
display: inline-block;
|
|
opacity: 0;
|
|
transform: translateY(2px);
|
|
}
|
|
.menubar-appear.menubar-appear-active{
|
|
opacity: 1;
|
|
transform: translateY(0px);
|
|
transition: all 0.15s ease-out;
|
|
}
|