From b1d0b20e2500cb523e1d2e3a48d4b81fe2c3c62a Mon Sep 17 00:00:00 2001 From: Senad Uka Date: Sat, 4 Mar 2023 11:54:17 +0100 Subject: [PATCH] Fix the CSS --- web/static/index.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web/static/index.html b/web/static/index.html index 41e67f9..03e0a19 100644 --- a/web/static/index.html +++ b/web/static/index.html @@ -9,10 +9,16 @@ padding: 0; } + html { + height: 100%; + } + + /* Stretch the background image to cover the entire page */ body { + min-height: 100%; background-image: url(http://localhost:8082/image.jpg); - background-size: cover; + background-size: 100% 100%; background-repeat: no-repeat; }