@sovereignfs/ui 0.33.0 → 0.33.1

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.
@@ -205,19 +205,19 @@
205
205
 
206
206
  /* Title + close button in one solid row, via the shared OverlayHeader
207
207
  component. Being a flex sibling before .content means it never scrolls —
208
- the content area scrolls below it. */
208
+ the content area scrolls below it.
209
+ .content itself needs no mobile override here any more: it used to zero
210
+ out padding-top so a plugin's hand-rolled sticky header (rendered as
211
+ .content's own first child, right below OverlayHeader) would sit flush
212
+ against it. That case no longer exists — a plugin with a tab strip/
213
+ secondary nav now hands it to OverlayHeader's own secondRow slot
214
+ (useOverlaySecondRow) instead of rendering it inside .content; Account
215
+ and Console both migrated to this (mobile design-system plan, Phase
216
+ C1b). With .content's first child back to being genuine page content, it
217
+ needs the same breathing room from the header that .content's own base
218
+ padding (var(--sv-space-6) on every side) already provides everywhere
219
+ else. */
209
220
  .mobileHeader {
210
221
  display: block;
211
222
  }
212
-
213
- /* Remove top padding so the sticky plugin header sits flush against
214
- OverlayHeader — no gap for scrolling content to bleed through.
215
- padding-bottom no longer adds --sv-shell-footer-height on top of
216
- --sv-space-6 — the scrim above already stops short of the footer, so
217
- .content doesn't need to additionally compensate for it here (that used
218
- to double-count the footer clearance). */
219
- .content {
220
- padding-top: 0;
221
- padding-bottom: var(--sv-space-6, 24px);
222
- }
223
223
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sovereignfs/ui",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "type": "module",
5
5
  "description": "Sovereign Design System — design tokens and React components.",
6
6
  "keywords": [
@@ -205,19 +205,19 @@
205
205
 
206
206
  /* Title + close button in one solid row, via the shared OverlayHeader
207
207
  component. Being a flex sibling before .content means it never scrolls —
208
- the content area scrolls below it. */
208
+ the content area scrolls below it.
209
+ .content itself needs no mobile override here any more: it used to zero
210
+ out padding-top so a plugin's hand-rolled sticky header (rendered as
211
+ .content's own first child, right below OverlayHeader) would sit flush
212
+ against it. That case no longer exists — a plugin with a tab strip/
213
+ secondary nav now hands it to OverlayHeader's own secondRow slot
214
+ (useOverlaySecondRow) instead of rendering it inside .content; Account
215
+ and Console both migrated to this (mobile design-system plan, Phase
216
+ C1b). With .content's first child back to being genuine page content, it
217
+ needs the same breathing room from the header that .content's own base
218
+ padding (var(--sv-space-6) on every side) already provides everywhere
219
+ else. */
209
220
  .mobileHeader {
210
221
  display: block;
211
222
  }
212
-
213
- /* Remove top padding so the sticky plugin header sits flush against
214
- OverlayHeader — no gap for scrolling content to bleed through.
215
- padding-bottom no longer adds --sv-shell-footer-height on top of
216
- --sv-space-6 — the scrim above already stops short of the footer, so
217
- .content doesn't need to additionally compensate for it here (that used
218
- to double-count the footer clearance). */
219
- .content {
220
- padding-top: 0;
221
- padding-bottom: var(--sv-space-6, 24px);
222
- }
223
223
  }