From 75f3ef392e4cedcba98f398a64110e1f86877710 Mon Sep 17 00:00:00 2001 From: schn33fuchs Date: Sun, 7 Jun 2026 12:11:49 +0200 Subject: [PATCH] Mobile fix The CSG logo shrinks when on mobile screens --- frontend/src/styles/components/_icon.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/src/styles/components/_icon.scss b/frontend/src/styles/components/_icon.scss index 28272fe..cea4a4b 100644 --- a/frontend/src/styles/components/_icon.scss +++ b/frontend/src/styles/components/_icon.scss @@ -10,8 +10,18 @@ justify-content: center; padding: 0; + @media (max-width: 768px) { + max-width: 60px; + + img { + width: 100%; + height: auto; + } + } + img { width: auto; height: auto; } } +