aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorGitExample <git@example.com>2022-02-05 00:35:12 +0100
committerGitExample <git@example.com>2022-02-05 00:35:12 +0100
commit7573f80030d9536d97b6a60dd1f9bce3c4093209 (patch)
tree9847330ad4f3f759ee6fd376c2a5fceca463f7fe /src/app
parent422db88bcf8afc5c6810384cb5757d084c7cdf00 (diff)
downloadViper-7573f80030d9536d97b6a60dd1f9bce3c4093209.tar.gz
Viper-7573f80030d9536d97b6a60dd1f9bce3c4093209.zip
fixed #bgHolder not covering entire background
-1px should be enough, however to make sure I made it -5px instead.
Diffstat (limited to 'src/app')
-rw-r--r--src/app/main.css10
1 files changed, 5 insertions, 5 deletions
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;