fix(components): keep activatable pulldown header inline on desktop

This commit is contained in:
2026-05-25 07:12:59 +02:00
parent 102e391977
commit f4e98fc6d4
+6 -3
View File
@@ -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%;
}