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:
parent
ed9694c246
commit
75dc20ca0b
13 changed files with 194 additions and 95 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue