1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fix backdrop appearances

This commit is contained in:
Fedor Katurov 2023-10-27 11:35:51 +06:00
parent ee049eb430
commit cbf7b1f616
5 changed files with 16 additions and 15 deletions

View file

@ -1,12 +1,11 @@
@import 'src/styles/variables';
.stack {
@include blur;
display: flex;
flex-direction: row-reverse;
width: auto;
border-radius: $radius 0 0 $radius;
background: $content_bg_backdrop;
@include sidebar_stack_limit {
& > *:not(:last-child) {

View file

@ -1,12 +1,18 @@
@import "src/styles/variables";
@import 'src/styles/variables';
@keyframes appear {
0% { opacity: 0; }
100% { opacity: 1; }
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes slideIn {
100% { transform: translate(0, 0); }
100% {
transform: translate(0, 0);
}
}
.wrapper {
@ -17,7 +23,7 @@
z-index: 26;
justify-content: flex-end;
overflow: hidden;
animation: appear 0.25s forwards;
// animation: appear 0.25s forwards;
& > * {
z-index: 4;