anentrypoint-design 0.0.431 → 0.0.432

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/247420.css CHANGED
@@ -6184,8 +6184,18 @@
6184
6184
 
6185
6185
  /* == appended: signin kit cleanup == */
6186
6186
  /* -- signin kit (ui_kits/signin) -- */
6187
- .ds-247420 .ds-auth-wrap { padding: var(--space-2, 8px); display: flex; flex-direction: column; align-items: center; }
6188
- .ds-247420 .ds-auth-col { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: var(--space-2); margin: clamp(var(--space-2-75), 4vw, var(--space-4)) 0; min-width: 0; }
6187
+ /* Centres one short card in the pane. `display:flex` is repeated after
6188
+ .ds-app-surface's `flow-root` because this class is used TOGETHER with that
6189
+ root and must win the centring; `min-height:100%` lets justify-content
6190
+ actually have room to centre against. No block margin: an auth screen is one
6191
+ card, not a run of editorial sections, and inheriting .ds-section's 96px
6192
+ rhythm is what pushed a 430px card to a 946px scroll height inside a ~514px
6193
+ pane and gave .app-main its own scrollbar at every real window height. */
6194
+ .ds-247420 .ds-auth-wrap { padding: var(--space-2, 8px); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100%; margin-block: 0; }
6195
+ /* `auto` block margin, not a fixed clamp: the wrap centres the column, and a
6196
+ fixed top/bottom margin both fights that centring and re-adds height the pane
6197
+ then has to scroll. `auto` collapses when the pane is short, centres when tall. */
6198
+ .ds-247420 .ds-auth-col { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: var(--space-2); margin: auto 0; min-width: 0; }
6189
6199
  /* 18px ceiling: no tier between --space-3 (16) and --space-3-5 (20). */
6190
6200
  .ds-247420 .ds-auth-form { padding: clamp(var(--space-2-75), 3vw, 18px); display: flex; flex-direction: column; gap: var(--space-2-5); }
6191
6201
  .ds-247420 .ds-auth-sent { align-items: center; text-align: center; }