From 757012399ac2236b9643b5812f28b1477bc54738 Mon Sep 17 00:00:00 2001 From: enes Date: Mon, 2 Sep 2024 14:41:25 +0200 Subject: [PATCH] fix: main css background, avoid overscroll showing white edge --- src/App.scss | 1 + src/layouts/style.module.scss | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.scss b/src/App.scss index 09a896b..d3bff8a 100644 --- a/src/App.scss +++ b/src/App.scss @@ -41,6 +41,7 @@ p { body { color: $text-color; + background: $body-background-color; font-family: $font-familiy; letter-spacing: $letter-spacing; font-size: $body-font-size; diff --git a/src/layouts/style.module.scss b/src/layouts/style.module.scss index c1aee30..6c8aa59 100644 --- a/src/layouts/style.module.scss +++ b/src/layouts/style.module.scss @@ -4,5 +4,4 @@ .main { flex-grow: 1; padding: $header-height + $body-vertical-padding 0 $body-vertical-padding 0; - background-color: $body-background-color; }