Set multiselect pulldown width to 500px desktop and 80vw mobile

This commit is contained in:
2026-05-20 13:15:14 +02:00
parent 48460ff0e0
commit 674abc8ad6
+16
View File
@@ -1873,6 +1873,22 @@ section + section {
margin-top: var(--spacing-small); margin-top: var(--spacing-small);
} }
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-demo {
width: 500px;
max-width: 100%;
}
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-demo .sg-pulldown-demo__trigger,
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-demo .sg-pulldown-panel {
width: 100%;
}
@media (max-width: 48rem) {
.sg-options-row[data-pattern="multiselektions-pulldown"] .sg-pulldown-demo {
width: 80vw;
}
}
.sg-form-sections-card__actions { .sg-form-sections-card__actions {
display: grid; display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-columns: repeat(2, minmax(0, 1fr));