Files
quectel-rgmii-toolkit/www/css/bulma/sass/base/animations.scss
Russel Yasol b70ada6b9c ready for PR
2024-10-02 19:22:00 +08:00

16 lines
165 B
SCSS

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