From c3193fa2e42669e7b3f6981b29c7546c4c0627a5 Mon Sep 17 00:00:00 2001 From: Brandon Date: Wed, 21 May 2025 17:34:29 -0400 Subject: [PATCH] CSS Fix --- src/main.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main.css b/src/main.css index affe09c..d7df08e 100644 --- a/src/main.css +++ b/src/main.css @@ -1,20 +1,20 @@ /* src/main.css */ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); -body { +html, body { margin: 0; padding: 0; font-family: 'Roboto', sans-serif; - overflow: hidden; + height: 100%; + overflow: auto; /* Allow natural scrolling */ } #app, .v-application { + min-height: 100vh; background-image: url('/carbon.jpg'); background-repeat: no-repeat; background-position: center; - position: relative; - z-index: 0; - height: 100vh; - overflow-y: auto; + background-attachment: fixed; + background-size: cover; } \ No newline at end of file