Fix viewport issues
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dominic Zimmer 2023-02-26 22:57:13 +01:00
parent 070484e335
commit 32d3c8705e

View File

@ -1,5 +1,6 @@
.loading {
height: 100vh;
height: 100svh;
width: 100vw;
background-color: black;
}
@ -85,6 +86,7 @@ input[type="radio"]:checked+label {
background-image: url("assets/background.jpg");
width: 100vw;
height: 100vh;
height: 100svh;
position: absolute;
filter: blur(7px) contrast(70%);
background-size: cover;
@ -94,4 +96,8 @@ input[type="radio"]:checked+label {
position: sticky;
top: 0px;
z-index: -1;
}
}
.page :is(p, label, h1, h2, h3, h4, h5, h6) {
filter: drop-shadow(1px 1px 3px white);
}