13 lines
247 B
SCSS
13 lines
247 B
SCSS
|
.loader {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
|
||
|
.animation {
|
||
|
background-image: var(--loader-img);
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center center;
|
||
|
width: 64px;
|
||
|
height: 64px;
|
||
|
}
|
||
|
}
|