Files
karma/ui/src/Styles/Components/NavBarSlide.scss
Łukasz Mierzwa de43f1ac4a feat(ui): theme switching
This add "proper" dark mode using darkly bootstrap theme
2019-11-27 12:18:13 +00:00

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;
}