bulma/sass/base/animations.scss
Jeremy Thomas 69877a652c Init v1
2024-03-21 16:11:54 +00:00

16 lines
165 B
SCSS

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