Luncher/client/src/FallingLeaves.scss
Martin Berka 9e0e842c2d
All checks were successful
ci/woodpecker/push/workflow Pipeline was successful
Podzimní atmosféra
2025-10-11 11:03:20 +02:00

31 lines
496 B
SCSS

.falling-leaves {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.leaf-scene {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 100%;
transform-style: preserve-3d;
div {
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-size: 100%;
transform-style: preserve-3d;
backface-visibility: visible;
}
}