freedive/assets/css/bulma/sass/base/animations.scss
2024-05-10 02:19:57 +05:30

15 lines
165 B
SCSS

@keyframes spinAround {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
@keyframes pulsate {
50% {
opacity: 0.5;
}
}