From 5ae03396e09edb8c30d04a75e7c7c9c83ee8dfb7 Mon Sep 17 00:00:00 2001 From: Ravinou Date: Sun, 3 Sep 2023 14:23:09 +0200 Subject: [PATCH] fix: footer width create empty space on right --- Components/UI/Layout/Footer/Footer.module.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Components/UI/Layout/Footer/Footer.module.css b/Components/UI/Layout/Footer/Footer.module.css index c044d7d..c966167 100644 --- a/Components/UI/Layout/Footer/Footer.module.css +++ b/Components/UI/Layout/Footer/Footer.module.css @@ -3,10 +3,14 @@ text-align: center; position: absolute; bottom: 0; - width: calc(100% + 70px); + width: 100%; height: 50px; } +.footer p { + padding-left: 70px; +} + a.site { color: #6d4aff; text-decoration: none; @@ -16,4 +20,7 @@ a.site { .footer { width: 100%; } + .footer p { + padding-left: 0; + } }