freedive/assets/css/bulma/sass/base/animations.scss

16 lines
165 B
SCSS
Raw Normal View History

2024-05-09 22:49:57 +02:00
@keyframes spinAround {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
@keyframes pulsate {
50% {
opacity: 0.5;
}
}