From f4e98fc6d459cde4e3ac869bec465cef5cac6f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Mon, 25 May 2026 07:12:59 +0200 Subject: [PATCH] fix(components): keep activatable pulldown header inline on desktop --- styleguide.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/styleguide.css b/styleguide.css index 87cd318..26af782 100644 --- a/styleguide.css +++ b/styleguide.css @@ -832,9 +832,9 @@ section + section { #component-pulldown .sg-activatable-row { display: grid; - grid-template-columns: 1fr; - align-items: start; - row-gap: var(--spacing-small); + grid-template-columns: max-content minmax(0, 1fr); + align-items: center; + column-gap: var(--spacing-large); width: 100%; } @@ -909,6 +909,9 @@ section + section { } #component-pulldown .sg-activatable-row { + grid-template-columns: 1fr; + align-items: start; + row-gap: var(--spacing-small); width: 100%; max-width: 100%; }