mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-05-23 08:51:06 +08:00
22 lines
308 B
SCSS
22 lines
308 B
SCSS
#root {
|
|
text-align: center;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
|
|
>:not(.background) {
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.background {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
object-fit: cover;
|
|
z-index: 0;
|
|
}
|