mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
25 lines
378 B
SCSS
25 lines
378 B
SCSS
@import "src/styles/variables";
|
|
|
|
@keyframes appear {
|
|
0% { opacity: 0; }
|
|
100% { opacity: 1; }
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
100% { transform: translate(0, 0); }
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
z-index: 26;
|
|
justify-content: flex-end;
|
|
overflow: hidden;
|
|
animation: appear 0.25s forwards;
|
|
|
|
& > * {
|
|
z-index: 4;
|
|
}
|
|
}
|