From c9a82e3c27cbba8b1e6f45791d7fe1c8bbb4005e Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Fri, 4 Oct 2024 14:31:40 +0200 Subject: [PATCH] Fixed css footer --- assets/_custom.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/_custom.scss b/assets/_custom.scss index 559a68f..a7cbaea 100644 --- a/assets/_custom.scss +++ b/assets/_custom.scss @@ -13,6 +13,7 @@ align-items: flex-start; background-color: var(--gray-100); width: 100%; + min-width: 30rem; bottom: 0; left: 0; right: 0; @@ -39,3 +40,9 @@ font-size: 0.9rem; } + +@media screen and (max-width: $mobile-breakpoint) { + .info-container { + min-width: 0; + } +}