From 8f09d32630c4b9d6e15eae4c4f58ea74b98f4d30 Mon Sep 17 00:00:00 2001 From: Kevin Rohlf <123676073+KevinRohlf@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:07:57 +0100 Subject: [PATCH] fix: update footer subtitle width (#611) * fix: update footer subtitle width * chore: update footer subtitle css * fix: updated footer subtitle css --- src/components/Footer/Footer.module.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/components/Footer/Footer.module.css b/src/components/Footer/Footer.module.css index 2e60af58b..1e761895e 100644 --- a/src/components/Footer/Footer.module.css +++ b/src/components/Footer/Footer.module.css @@ -27,6 +27,7 @@ position: relative; text-align: left; color: var(--footer-font-color); + margin-bottom: var(--spacer); } .main svg { @@ -38,9 +39,20 @@ .subtitle { position: absolute; - width: max-content; top: 4rem; left: 5rem; + max-width: 100%; +} + +@media screen and (min-width: 60rem) { + .subtitle { + max-width: unset; + width: max-content; + } + + .main { + margin-bottom: unset; + } } .copyright a {