mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-23 16:17:46 +00:00
22 lines
No EOL
379 B
Text
22 lines
No EOL
379 B
Text
// Copyright (C) 2017-2023 Smart code 203358507
|
|
|
|
:global(.animation-fade-in) {
|
|
:local {
|
|
animation-name: fade-in;
|
|
}
|
|
|
|
animation-timing-function: ease-in-out;
|
|
animation-duration: 100ms;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0.6;
|
|
transform: translateY(0.2vh);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
} |