30 lines
488 B
SCSS
30 lines
488 B
SCSS
.loading {
|
|
@apply bg-lhoist;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: fixed;
|
|
|
|
&__animation {
|
|
max-width: 100vh;
|
|
max-height: 100vw;
|
|
margin: auto;
|
|
-webkit-transform: scaleX(-1);
|
|
transform: scaleX(-1);
|
|
animation: translate 2s infinite linear;
|
|
}
|
|
|
|
&__text {
|
|
@apply text-7xl tracking-wider text-zuume text-white text-center;
|
|
transform: translate(0, -50px);
|
|
}
|
|
}
|
|
|
|
@keyframes translate {
|
|
from {
|
|
translate: -2vw;
|
|
}
|
|
to {
|
|
translate: 2vw;
|
|
}
|
|
}
|