From 94478c79b0908a69064d77c6388812e47edc4fbc Mon Sep 17 00:00:00 2001 From: Augustin Mauroy Date: Sun, 3 Mar 2024 11:50:41 +0100 Subject: [PATCH 1/2] fix: `NavBar` Background --- components/Containers/NavBar/index.module.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/Containers/NavBar/index.module.css b/components/Containers/NavBar/index.module.css index d0f486dc04175..4067dc8090270 100644 --- a/components/Containers/NavBar/index.module.css +++ b/components/Containers/NavBar/index.module.css @@ -1,6 +1,8 @@ .container { @apply border-neutral-200 + bg-white dark:border-neutral-900 + dark:bg-neutral-950 md:flex md:h-16 md:flex-row From 236440299408a448ccbdbcccc373dcbd0ffe45fb Mon Sep 17 00:00:00 2001 From: Augustin Mauroy Date: Sun, 3 Mar 2024 11:56:51 +0100 Subject: [PATCH 2/2] fix: `Footer` Background --- components/Containers/Footer/index.module.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/Containers/Footer/index.module.css b/components/Containers/Footer/index.module.css index f34359598fef5..85a54cc2a65ca 100644 --- a/components/Containers/Footer/index.module.css +++ b/components/Containers/Footer/index.module.css @@ -5,9 +5,11 @@ gap-6 border-t border-neutral-200 + bg-white px-8 py-4 dark:border-neutral-900 + dark:bg-neutral-950 md:flex-row md:justify-between md:py-5;