From 32d3c8705ec2f46c415255a1487ec90a7ed5d0f2 Mon Sep 17 00:00:00 2001 From: Dominic Zimmer Date: Sun, 26 Feb 2023 22:57:13 +0100 Subject: [PATCH] Fix viewport issues --- src/PartyPage.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/PartyPage.css b/src/PartyPage.css index 5c59264..9d6ac2e 100644 --- a/src/PartyPage.css +++ b/src/PartyPage.css @@ -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; -} \ No newline at end of file +} + +.page :is(p, label, h1, h2, h3, h4, h5, h6) { + filter: drop-shadow(1px 1px 3px white); +}