From 3dc4d78b26af082428e17903f02c41a884f767aa Mon Sep 17 00:00:00 2001 From: Florian Sesser Date: Thu, 24 Apr 2025 13:51:04 +0000 Subject: [PATCH 1/2] Fix mobile width Co-authored-by: Benoit Donneaux --- src/_sass/_custom.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/_sass/_custom.scss b/src/_sass/_custom.scss index eb294bc..28ddce1 100644 --- a/src/_sass/_custom.scss +++ b/src/_sass/_custom.scss @@ -57,6 +57,9 @@ body { } .feature__item { + @media (max-width: 37.5em) { + width: 100%; + } background-color: #eee; margin-bottom: 1em; border-radius: 4px; From 1a9c6604118d9d7b55def91d8a75cf0ba1d1eafb Mon Sep 17 00:00:00 2001 From: Benoit Donneaux Date: Fri, 2 May 2025 10:27:49 +0200 Subject: [PATCH 2/2] Apply same media fix for grid item Co-authored-by: Florian Sesser Signed-off-by: Benoit Donneaux --- src/_sass/_custom.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/_sass/_custom.scss b/src/_sass/_custom.scss index 28ddce1..82e75a5 100644 --- a/src/_sass/_custom.scss +++ b/src/_sass/_custom.scss @@ -121,6 +121,9 @@ body { } .grid__item { + @media (max-width: 37.5em) { + width: 100%; + } background-color: #ccc; padding: 0.5em; border-radius: 4px;