data/method/chatgpt_web/ChatGPT-Next-Web-main/app/styles/animation.scss

24 lines
303 B
SCSS
Raw Normal View History

2024-01-29 10:44:43 +08:00
@keyframes slide-in {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}
@keyframes slide-in-from-top {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0px);
}
}