anentrypoint-design 0.0.430 → 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 +12 -2
- package/dist/247420.js +23 -23
- package/package.json +1 -1
- package/src/css/app-shell/kits-appended.css +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anentrypoint-design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.432",
|
|
4
4
|
"description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/247420.js",
|
|
@@ -481,8 +481,18 @@
|
|
|
481
481
|
|
|
482
482
|
/* == appended: signin kit cleanup == */
|
|
483
483
|
/* -- signin kit (ui_kits/signin) -- */
|
|
484
|
-
|
|
485
|
-
.ds-
|
|
484
|
+
/* Centres one short card in the pane. `display:flex` is repeated after
|
|
485
|
+
.ds-app-surface's `flow-root` because this class is used TOGETHER with that
|
|
486
|
+
root and must win the centring; `min-height:100%` lets justify-content
|
|
487
|
+
actually have room to centre against. No block margin: an auth screen is one
|
|
488
|
+
card, not a run of editorial sections, and inheriting .ds-section's 96px
|
|
489
|
+
rhythm is what pushed a 430px card to a 946px scroll height inside a ~514px
|
|
490
|
+
pane and gave .app-main its own scrollbar at every real window height. */
|
|
491
|
+
.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; }
|
|
492
|
+
/* `auto` block margin, not a fixed clamp: the wrap centres the column, and a
|
|
493
|
+
fixed top/bottom margin both fights that centring and re-adds height the pane
|
|
494
|
+
then has to scroll. `auto` collapses when the pane is short, centres when tall. */
|
|
495
|
+
.ds-auth-col { width: 100%; max-width: 440px; display: flex; flex-direction: column; gap: var(--space-2); margin: auto 0; min-width: 0; }
|
|
486
496
|
/* 18px ceiling: no tier between --space-3 (16) and --space-3-5 (20). */
|
|
487
497
|
.ds-auth-form { padding: clamp(var(--space-2-75), 3vw, 18px); display: flex; flex-direction: column; gap: var(--space-2-5); }
|
|
488
498
|
.ds-auth-sent { align-items: center; text-align: center; }
|