hugolxt 910a5820b0
🚧 Init front repo lecoffre (#1)
Initialization of the front repository
2023-03-15 14:38:50 +01:00

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);
}
}
}