17 lines
217 B
SCSS
17 lines
217 B
SCSS
@import "Themes/constants.scss";
|
|
|
|
.loader {
|
|
animation: spin 2s linear infinite;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
}
|