From 54104ca0270d4629a99d5a37145a875ac587ba6a Mon Sep 17 00:00:00 2001 From: Bennet Gallein Date: Sun, 25 May 2025 11:56:23 +0200 Subject: [PATCH] fix: lower margin-bottom on header to have not that much wasted space --- styles/Header.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/Header.module.css b/styles/Header.module.css index bd038f4..4167484 100644 --- a/styles/Header.module.css +++ b/styles/Header.module.css @@ -1,6 +1,6 @@ .header { height: rem(56px); - margin-bottom: rem(120px); + margin-bottom: rem(40px); background-color: var(--mantine-color-body); border-bottom: rem(1px) solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4)); }