From 7573f80030d9536d97b6a60dd1f9bce3c4093209 Mon Sep 17 00:00:00 2001 From: GitExample Date: Sat, 5 Feb 2022 00:35:12 +0100 Subject: fixed #bgHolder not covering entire background -1px should be enough, however to make sure I made it -5px instead. --- src/app/main.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/app') diff --git a/src/app/main.css b/src/app/main.css index 8bac0ea..e48625b 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -221,11 +221,11 @@ button:active {filter: brightness(90%)} img {pointer-events: none} #bgHolder { - top: 0; - left: 0; - right: 0; - bottom: 0; - z-index: -1; + top: -5px; + left: -5px; + right: -5px; + bottom: -5px; + z-index: -1; position: absolute; background-size: cover; background-position: center; -- cgit v1.2.3