@starci/grammar 0.4.7 → 0.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/styles.css +8 -1
- package/package.json +1 -1
package/dist/common/styles.css
CHANGED
|
@@ -1195,10 +1195,17 @@
|
|
|
1195
1195
|
}
|
|
1196
1196
|
|
|
1197
1197
|
@container starci-core-primary-rail (max-width: 32rem) {
|
|
1198
|
+
/*
|
|
1199
|
+
* Collapsed to a column, the header stays a region boundary, not a tighter internal
|
|
1200
|
+
* rhythm - `PrimaryRailLayout` and `WorkspaceShell` both hold `--starci-core-region-gap`
|
|
1201
|
+
* across every collapse tier and only ever change track/area, never the gap itself. The
|
|
1202
|
+
* stamped `data-contract="GAP-5"` on this root must stay true here too, so this rule may
|
|
1203
|
+
* change direction and alignment but not the gap value.
|
|
1204
|
+
*/
|
|
1198
1205
|
.starci-core-section-header {
|
|
1199
1206
|
align-items: flex-start;
|
|
1200
1207
|
flex-direction: column;
|
|
1201
|
-
gap:
|
|
1208
|
+
gap: var(--starci-core-region-gap, 1.5rem);
|
|
1202
1209
|
}
|
|
1203
1210
|
}
|
|
1204
1211
|
|