26 lines
299 B
SCSS
26 lines
299 B
SCSS
|
// 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;
|
||
|
}
|
||
|
}
|