From 43c1702d53fc5d1e0a8f4cab0fa89fe7e9c3138b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Tue, 19 May 2026 19:41:24 +0200 Subject: [PATCH] Fix mobile multiselect pulldown anchor width on small viewports --- styleguide.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/styleguide.css b/styleguide.css index e1d7129..304433e 100644 --- a/styleguide.css +++ b/styleguide.css @@ -1861,6 +1861,13 @@ section + section { margin-top: var(--spacing-small); } +@media (max-width: 48rem) { + .sg-options-row[data-pattern="multiselektions-pulldown"] .sg-options-row__left > .sg-pulldown-demo { + flex-basis: 100%; + width: 100%; + } +} + .sg-form-sections-card__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));