fix stars in order to take all the screen size

This commit is contained in:
Giovanni-Josserand 2025-12-04 22:31:57 +01:00
parent 14c8bf5bd9
commit 4910fafca6

View File

@ -27,10 +27,19 @@ body, html {
top: 0;
left: 0;
width: 100vw;
height: 100%;
height: 100vh;
z-index: 0;
}
#stars1, #stars2, #stars3 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: transparent;
}
#background_div {
max-height: 100vh;
display: flex;