diff --git a/styleguide.css b/styleguide.css index e5c94ad..9b8d42f 100644 --- a/styleguide.css +++ b/styleguide.css @@ -1931,13 +1931,16 @@ section + section { } .sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-demo .sg-pulldown-panel { - width: var(--layout-multiselect-pulldown-panel-desktop-width); + min-width: 100%; + width: max-content; max-width: calc(100vw - (2 * var(--spacing-large))); } @media (max-width: 48rem) { .sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-panel { - width: var(--layout-multiselect-pulldown-panel-mobile-width); + min-width: 100%; + width: max-content; + max-width: calc(100vw - (2 * var(--spacing-large))); } }