mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 04:13:42 +01:00
17 lines
240 B
SCSS
17 lines
240 B
SCSS
|
|
.anim.fadeIn {
|
|
opacity: 0;
|
|
animation-name: fadeIn;
|
|
animation-duration: 160ms;
|
|
animation-timing-function: ease-in-out;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
} |