mirror of
https://github.com/prymitive/karma
synced 2026-05-23 04:42:58 +00:00
23 lines
471 B
SCSS
23 lines
471 B
SCSS
.components-animation-navbar {
|
|
will-change: opacity;
|
|
transform: translateZ(0);
|
|
}
|
|
|
|
.components-animation-navbar-appear,
|
|
.components-animation-navbar-enter {
|
|
opacity: 0.01;
|
|
}
|
|
.components-animation-navbar-appear-active,
|
|
.components-animation-navbar-enter-active {
|
|
opacity: 1;
|
|
transition: opacity 0.5s ease-in;
|
|
}
|
|
|
|
.components-animation-navbar-exit {
|
|
opacity: 1;
|
|
}
|
|
.components-animation-navbar-exit-active {
|
|
opacity: 0.01;
|
|
transition: opacity 0.5s ease-out;
|
|
}
|