components/sass/init/_animation.scss

26 lines
299 B
SCSS
Raw Normal View History

// TODO: Make customizable
// This may have to become a mixin
@keyframes loading-animation {
0% {
background-position: -500px 0;
}
100% {
background-position: 500px 0;
}
}
@keyframes pulse {
0% {
opacity: 1;
}
50% {
opacity: 0.7;
}
100% {
opacity: 1;
}
}