Files
natascha-rieter.nl-user/plugins/problems/scss/_animations.scss
T
m038 db400a6993 Add problems plugin v3.0.0
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 23:42:54 +02:00

21 lines
271 B
SCSS

// Animations
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes slide-down {
0% {
opacity: 0;
transform: translateY(-$unit-8);
}
100% {
opacity: 1;
transform: translateY(0);
}
}