You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaer/lib/assets/css/animate.scss

40 lines
525 B
SCSS

/*
* animate.css
* Copyright (C) 2024 veypi
*
* Distributed under terms of the MIT license.
*/
@keyframes scale-up {
0% {
transform: scale(0);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}
@keyframes scale-off {
0% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(0);
opacity: 0;
}
}
@keyframes slide-in {
0% {
transform: translateX(200%) scale(0);
opacity: 0;
}
100% {
transform: translateX(0) scale(1);
opacity: 1;
}
}