1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-29 06:36:41 +07:00

fixed user hydration

This commit is contained in:
Fedor Katurov 2022-11-22 10:46:41 +06:00
parent ed9694c246
commit 75dc20ca0b
13 changed files with 194 additions and 95 deletions

View file

@ -2,10 +2,10 @@
@keyframes appear {
from {
transform: translate(0, -$header_height);
opacity: 0;
}
to {
transform: translate(0, 0);
opacity: 1;
}
}
@ -55,6 +55,12 @@
user-select: none;
text-transform: uppercase;
align-items: center;
opacity: 0;
transition: all 250ms;
&.active {
opacity: 1;
}
@include tablet {
flex: 1;