mirror of
https://github.com/euzu/tuliprox.git
synced 2026-09-17 14:42:11 +02:00
23 lines
399 B
SCSS
23 lines
399 B
SCSS
.tp__loading-screen {
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
perspective: 20rem;
|
|
.svg-logo {
|
|
fill: var(--primary-color);
|
|
transform-style: preserve-3d;
|
|
animation: spinY 3s linear infinite;
|
|
}
|
|
}
|
|
|
|
@keyframes spinY {
|
|
from {
|
|
transform: rotateY(0deg);
|
|
}
|
|
to {
|
|
transform: rotateY(360deg);
|
|
}
|
|
} |