From 11780533fafdc2802adf34b2b33e8f38356fcddf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Mon, 25 May 2026 07:16:39 +0200 Subject: [PATCH] fix(components): align activatable pulldown with label column --- styleguide.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styleguide.css b/styleguide.css index 26af782..6f2b351 100644 --- a/styleguide.css +++ b/styleguide.css @@ -832,9 +832,9 @@ section + section { #component-pulldown .sg-activatable-row { display: grid; - grid-template-columns: max-content minmax(0, 1fr); + grid-template-columns: var(--layout-input-label-width) minmax(0, 1fr); align-items: center; - column-gap: var(--spacing-large); + column-gap: var(--spacing-small); width: 100%; } @@ -842,7 +842,7 @@ section + section { display: grid; grid-template-columns: max-content max-content; align-items: center; - column-gap: var(--spacing-large); + column-gap: var(--spacing-small); width: 100%; justify-content: start; }