sekolah_adiwiyata/public/assets/src/scss/_modules/_keyframes-highlight.scss

16 lines
376 B
SCSS

//highlight on-demand
@-webkit-keyframes highlight {
from { background: $warning-50; }
to { background: transparent; }
}
@keyframes highlight {
from { background: $warning-50; }
to { background: transparent; }
}
.highlight {
-webkit-animation: highlight 1.5s;
-moz-animation: highlight 1.5s;
animation: highlight 1.5s;
}