1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/components/input/LoaderCircle/styles.module.scss
2020-11-06 13:05:43 +07:00

31 lines
399 B
SCSS

@import "src/styles/variables";
.icon {
fill: transparentize(black, 0.6);
stroke: none;
}
@keyframes spin {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
@keyframes fade {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0.1;
transform: scale(4);
}
}
.wrap {
animation: spin infinite 1s linear;
display: inline-flex;
}