diff options
author | GitExample <git@example.com> | 2022-02-05 00:35:12 +0100 |
---|---|---|
committer | GitExample <git@example.com> | 2022-02-05 00:35:12 +0100 |
commit | 7573f80030d9536d97b6a60dd1f9bce3c4093209 (patch) | |
tree | 9847330ad4f3f759ee6fd376c2a5fceca463f7fe | |
parent | 422db88bcf8afc5c6810384cb5757d084c7cdf00 (diff) | |
download | Viper-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.
-rw-r--r-- | src/app/main.css | 10 |
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; |