anentrypoint-design 0.0.431 → 0.0.433
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 +21 -2
- package/dist/247420.js +23 -23
- package/package.json +1 -1
- package/src/css/app-shell/collab.css +3 -0
- package/src/css/app-shell/kits-appended.css +18 -2
package/dist/247420.css
CHANGED
|
@@ -6015,6 +6015,11 @@
|
|
|
6015
6015
|
font-family: var(--ff-mono); white-space: pre-line; font-size: clamp(16px, 5vw, 24px);
|
|
6016
6016
|
background: var(--tile-tone, var(--panel-1));
|
|
6017
6017
|
}
|
|
6018
|
+
/* Carousel adoption in the lightbox: each item takes the track's full inner
|
|
6019
|
+
width so exactly one tile is visible per page, matching the modal's own
|
|
6020
|
+
fixed 520px card width rather than sizing to caption content. */
|
|
6021
|
+
.ds-247420 .ds-lightbox-card--carousel .ds-carousel-item { flex: 0 0 100%; width: 100%; }
|
|
6022
|
+
.ds-247420 .ds-lightbox-card--carousel .ds-carousel-track { scroll-snap-type: x mandatory; }
|
|
6018
6023
|
|
|
6019
6024
|
/* --- search ------------------------------------------------- */
|
|
6020
6025
|
.ds-247420 .ds-topbar-search { width: min(280px, 100%); min-width: 0; flex: 1 1 clamp(140px, 30vw, 280px); }
|
|
@@ -6184,8 +6189,18 @@
|
|
|
6184
6189
|
|
|
6185
6190
|
/* == appended: signin kit cleanup == */
|
|
6186
6191
|
/* -- signin kit (ui_kits/signin) -- */
|
|
6187
|
-
|
|
6188
|
-
.ds-
|
|
6192
|
+
/* Centres one short card in the pane. `display:flex` is repeated after
|
|
6193
|
+
.ds-app-surface's `flow-root` because this class is used TOGETHER with that
|
|
6194
|
+
root and must win the centring; `min-height:100%` lets justify-content
|
|
6195
|
+
actually have room to centre against. No block margin: an auth screen is one
|
|
6196
|
+
card, not a run of editorial sections, and inheriting .ds-section's 96px
|
|
6197
|
+
rhythm is what pushed a 430px card to a 946px scroll height inside a ~514px
|
|
6198
|
+
pane and gave .app-main its own scrollbar at every real window height. */
|
|
6199
|
+
.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; }
|
|
6200
|
+
/* `auto` block margin, not a fixed clamp: the wrap centres the column, and a
|
|
6201
|
+
fixed top/bottom margin both fights that centring and re-adds height the pane
|
|
6202
|
+
then has to scroll. `auto` collapses when the pane is short, centres when tall. */
|
|
6203
|
+
.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
6204
|
/* 18px ceiling: no tier between --space-3 (16) and --space-3-5 (20). */
|
|
6190
6205
|
.ds-247420 .ds-auth-form { padding: clamp(var(--space-2-75), 3vw, 18px); display: flex; flex-direction: column; gap: var(--space-2-5); }
|
|
6191
6206
|
.ds-247420 .ds-auth-sent { align-items: center; text-align: center; }
|
|
@@ -6196,6 +6211,7 @@
|
|
|
6196
6211
|
.ds-247420 .ds-auth-sent-glyph { font-size: 32px; color: var(--panel-accent); }
|
|
6197
6212
|
.ds-247420 .ds-auth-sent-title { margin: 0; font-weight: 600; }
|
|
6198
6213
|
.ds-247420 .ds-auth-sent-sub { margin: 0; color: var(--panel-text-2); overflow-wrap: anywhere; }
|
|
6214
|
+
.ds-247420 .ds-auth-otp-wrap { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
|
|
6199
6215
|
.ds-247420 .ds-auth-field { display: flex; flex-direction: column; gap: var(--space-1); }
|
|
6200
6216
|
/* .ds-auth-field-label joins the kit small-label voice above, no overrides. */
|
|
6201
6217
|
.ds-247420 .ds-auth-row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); flex-wrap: wrap; }
|
|
@@ -7277,6 +7293,9 @@
|
|
|
7277
7293
|
here under a distinct prefix since this is a different feature. */
|
|
7278
7294
|
.ds-247420 .ds-collab-bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
|
|
7279
7295
|
.ds-247420 .ds-collab-bar-empty { color: var(--fg-3); font-size: var(--fs-sm); padding: var(--space-2) 0; }
|
|
7296
|
+
/* workspace kit's live tab: PresenceBar summary strip stacked above
|
|
7297
|
+
SessionDashboard, filling the .ws-main flex column it renders inside. */
|
|
7298
|
+
.ds-247420 .ds-workspace-live { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; min-height: 0; }
|
|
7280
7299
|
.ds-247420 .ds-collab-chip {
|
|
7281
7300
|
display: inline-flex;
|
|
7282
7301
|
align-items: center;
|