From 1b1d72246fc9dccd6695d1956446ed0f2ed4fe29 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Wed, 9 Oct 2024 19:24:37 -0300 Subject: [PATCH] Set width: 85% at <= $breakpoint-sm --- src/css/_base.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/css/_base.scss b/src/css/_base.scss index 9a7f9ff55..89845e854 100644 --- a/src/css/_base.scss +++ b/src/css/_base.scss @@ -55,6 +55,11 @@ body .root .content.theme { width: 100%; color: var(--color-accent); + /* <= $breakpoint-sm */ + @media (max-width: $breakpoint-sm) { + width: 85%; + } + header { a[data-testid="h1"] { background: var(--primary-color);