anentrypoint-design 0.0.275 → 0.0.277

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/app-shell.css CHANGED
@@ -718,10 +718,10 @@ a.row { text-decoration: none; }
718
718
  No centered stack. */
719
719
  .ds-hero {
720
720
  padding: var(--space-9) 0 var(--space-8);
721
- display: grid; gap: var(--space-5) var(--space-6);
721
+ display: grid; gap: var(--space-5) var(--space-5);
722
722
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
723
723
  grid-template-areas: 'title title' 'body actions';
724
- align-items: end;
724
+ align-items: start;
725
725
  max-width: var(--measure-wide);
726
726
  }
727
727
  .ds-hero-head { grid-area: title; display: grid; gap: var(--space-3); }
@@ -740,7 +740,10 @@ a.row { text-decoration: none; }
740
740
  }
741
741
  /* The lead phrase in the title — printed in the electric lead, not glowing. */
742
742
  .ds-hero-accent { color: var(--accent-ink); font-weight: 700; }
743
- .ds-hero-actions { display: flex; gap: var(--space-2, 10px); flex-wrap: wrap; align-self: end; }
743
+ .ds-hero-actions {
744
+ display: flex; gap: var(--space-2, 10px); flex-wrap: wrap;
745
+ align-self: start; margin-top: var(--space-hair, 4px);
746
+ }
744
747
  /* Container-queried (the whole shell is; a 500px pane on a wide viewport
745
748
  would keep the two-column grid under a width @media). Left-aligned stack —
746
749
  no centering — preserving the asymmetric intent. */
@@ -3404,6 +3407,10 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
3404
3407
  @container (max-width: 900px) {
3405
3408
  .app-side-toggle { display: inline-flex; }
3406
3409
  .app-topbar .brand { margin-left: 44px; }
3410
+ /* Merged-chrome layout (.app-chrome > .app-crumb) puts the breadcrumb, not
3411
+ the topbar brand, at the left edge where the absolute-positioned toggle
3412
+ sits — without this the crumb text renders directly under the button. */
3413
+ .app-chrome > .app-crumb { margin-left: 44px; }
3407
3414
  }
3408
3415
 
3409
3416
  /* Desktop: the app shell is exactly viewport-height and contains its own
@@ -4199,6 +4206,31 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
4199
4206
  @media (max-width: 480px) {
4200
4207
  .ds-home-panel { margin: var(--space-1, 4px) 0; }
4201
4208
  }
4209
+ /* Home landing section tablist (site/theme.mjs Tabs()) — bare .tabs had no
4210
+ rule anywhere, so the four links rendered as unstyled inline text jammed
4211
+ together with no separation. Mirror the topbar nav pill-tab treatment. */
4212
+ .tabs[role="tablist"] {
4213
+ display: flex;
4214
+ flex-wrap: wrap;
4215
+ gap: var(--space-1, 4px);
4216
+ font-size: var(--fs-sm);
4217
+ }
4218
+ .tabs[role="tablist"] a {
4219
+ display: flex;
4220
+ align-items: center;
4221
+ gap: var(--space-1, 4px);
4222
+ padding: var(--space-2, 8px) var(--space-3, 12px);
4223
+ border-radius: var(--r-pill);
4224
+ color: var(--fg-2);
4225
+ transition: background var(--dur-snap) var(--ease), color var(--dur-snap) var(--ease);
4226
+ }
4227
+ .tabs[role="tablist"] a:hover { background: var(--bg-2); color: var(--fg); }
4228
+ .tabs[role="tablist"] a.active {
4229
+ color: var(--accent-ink);
4230
+ background: color-mix(in oklab, var(--accent) 16%, transparent);
4231
+ box-shadow: inset 0 -2px 0 0 var(--accent);
4232
+ font-weight: 600;
4233
+ }
4202
4234
  .ds-quickstart {
4203
4235
  padding: var(--space-3, 16px) var(--space-4, 22px);
4204
4236
  display: flex;
package/dist/247420.css CHANGED
@@ -1234,10 +1234,10 @@
1234
1234
  No centered stack. */
1235
1235
  .ds-247420 .ds-hero {
1236
1236
  padding: var(--space-9) 0 var(--space-8);
1237
- display: grid; gap: var(--space-5) var(--space-6);
1237
+ display: grid; gap: var(--space-5) var(--space-5);
1238
1238
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
1239
1239
  grid-template-areas: 'title title' 'body actions';
1240
- align-items: end;
1240
+ align-items: start;
1241
1241
  max-width: var(--measure-wide);
1242
1242
  }
1243
1243
  .ds-247420 .ds-hero-head { grid-area: title; display: grid; gap: var(--space-3); }
@@ -1256,7 +1256,10 @@
1256
1256
  }
1257
1257
  /* The lead phrase in the title — printed in the electric lead, not glowing. */
1258
1258
  .ds-247420 .ds-hero-accent { color: var(--accent-ink); font-weight: 700; }
1259
- .ds-247420 .ds-hero-actions { display: flex; gap: var(--space-2, 10px); flex-wrap: wrap; align-self: end; }
1259
+ .ds-247420 .ds-hero-actions {
1260
+ display: flex; gap: var(--space-2, 10px); flex-wrap: wrap;
1261
+ align-self: start; margin-top: var(--space-hair, 4px);
1262
+ }
1260
1263
  /* Container-queried (the whole shell is; a 500px pane on a wide viewport
1261
1264
  would keep the two-column grid under a width @media). Left-aligned stack —
1262
1265
  no centering — preserving the asymmetric intent. */
@@ -3909,6 +3912,10 @@
3909
3912
  @container (max-width: 900px) {
3910
3913
  .ds-247420 .app-side-toggle { display: inline-flex; }
3911
3914
  .ds-247420 .app-topbar .brand { margin-left: 44px; }
3915
+ /* Merged-chrome layout (.app-chrome > .app-crumb) puts the breadcrumb, not
3916
+ the topbar brand, at the left edge where the absolute-positioned toggle
3917
+ sits — without this the crumb text renders directly under the button. */
3918
+ .ds-247420 .app-chrome > .app-crumb { margin-left: 44px; }
3912
3919
  }
3913
3920
 
3914
3921
  /* Desktop: the app shell is exactly viewport-height and contains its own
@@ -4703,6 +4710,31 @@
4703
4710
  @media (max-width: 480px) {
4704
4711
  .ds-247420 .ds-home-panel { margin: var(--space-1, 4px) 0; }
4705
4712
  }
4713
+ /* Home landing section tablist (site/theme.mjs Tabs()) — bare .tabs had no
4714
+ rule anywhere, so the four links rendered as unstyled inline text jammed
4715
+ together with no separation. Mirror the topbar nav pill-tab treatment. */
4716
+ .ds-247420 .tabs[role="tablist"] {
4717
+ display: flex;
4718
+ flex-wrap: wrap;
4719
+ gap: var(--space-1, 4px);
4720
+ font-size: var(--fs-sm);
4721
+ }
4722
+ .ds-247420 .tabs[role="tablist"] a {
4723
+ display: flex;
4724
+ align-items: center;
4725
+ gap: var(--space-1, 4px);
4726
+ padding: var(--space-2, 8px) var(--space-3, 12px);
4727
+ border-radius: var(--r-pill);
4728
+ color: var(--fg-2);
4729
+ transition: background var(--dur-snap) var(--ease), color var(--dur-snap) var(--ease);
4730
+ }
4731
+ .ds-247420 .tabs[role="tablist"] a:hover { background: var(--bg-2); color: var(--fg); }
4732
+ .ds-247420 .tabs[role="tablist"] a.active {
4733
+ color: var(--accent-ink);
4734
+ background: color-mix(in oklab, var(--accent) 16%, transparent);
4735
+ box-shadow: inset 0 -2px 0 0 var(--accent);
4736
+ font-weight: 600;
4737
+ }
4706
4738
  .ds-247420 .ds-quickstart {
4707
4739
  padding: var(--space-3, 16px) var(--space-4, 22px);
4708
4740
  display: flex;