From fb0ee93eb468e7712f7d1018565a69b366f021ff Mon Sep 17 00:00:00 2001 From: Adrien Maston Date: Fri, 9 Jan 2026 12:12:00 +0100 Subject: [PATCH] Don't max-height lists in settings on mobile --- app/assets/stylesheets/settings.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/settings.css b/app/assets/stylesheets/settings.css index cd67a4cc0..0f1822a23 100644 --- a/app/assets/stylesheets/settings.css +++ b/app/assets/stylesheets/settings.css @@ -29,7 +29,9 @@ } .settings__panel--users { - max-height: 80dvh; + @media (min-width: 640px) { + max-height: 80dvh; + } @media (min-width: 960px) { max-height: calc(100dvh - 12rem);