anentrypoint-design 0.0.224 → 0.0.225

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
@@ -8125,7 +8125,7 @@
8125
8125
 
8126
8126
  /* gm-prose.css */
8127
8127
  /* ============================================================
8128
- gm-prose long-form article + doc-site prose surfaces
8128
+ gm-prose -- long-form article + doc-site prose surfaces
8129
8129
  Extracted-article host, sticky table-of-contents rail, CLI
8130
8130
  transcript block, definition-panel rows, repo cards, tag
8131
8131
  chips, and attributed callouts. Consumed pro-rata by doc
@@ -8145,14 +8145,22 @@
8145
8145
  }
8146
8146
 
8147
8147
  .ds-247420 #ds-article-host.has-toc {
8148
- display: grid;
8149
- grid-template-columns: 256px minmax(0, var(--measure-narrow));
8148
+ display: flex;
8149
+ align-items: flex-start;
8150
8150
  column-gap: 44px;
8151
- align-items: start;
8151
+ gap: 44px;
8152
+ max-width: calc(256px + 44px + var(--measure-narrow));
8153
+ margin-left: auto;
8154
+ margin-right: auto;
8155
+ }
8156
+ .ds-247420 #ds-article-host.has-toc > .article-col {
8157
+ flex: 1 1 0;
8158
+ min-width: 0;
8159
+ max-width: var(--measure-narrow);
8152
8160
  }
8153
8161
  .ds-247420 #ds-article-host.has-toc > .toc {
8154
- grid-column: 1;
8155
- grid-row: 1 / -1;
8162
+ flex: 0 0 256px;
8163
+ align-self: flex-start;
8156
8164
  position: sticky;
8157
8165
  top: 24px;
8158
8166
  align-self: start;
@@ -8193,9 +8201,10 @@
8193
8201
  .ds-247420 #ds-article-host .toc li::marker { color: var(--panel-text-3); font-variant-numeric: tabular-nums; }
8194
8202
  .ds-247420 #ds-article-host .toc a { color: var(--panel-text-2); text-decoration: none; transition: color .12s ease; }
8195
8203
  .ds-247420 #ds-article-host .toc a:hover { color: var(--panel-accent); }
8196
- .ds-247420 #ds-article-host.has-toc > :not(.toc) { grid-column: 2; min-width: 0; }
8204
+ .ds-247420 #ds-article-host.has-toc > .article-col > * { min-width: 0; }
8197
8205
  @media (max-width: 900px) {
8198
8206
  .ds-247420 #ds-article-host.has-toc { display: block; }
8207
+ .ds-247420 #ds-article-host.has-toc > .article-col { max-width: 100%; }
8199
8208
  .ds-247420 #ds-article-host.has-toc > .toc {
8200
8209
  position: static;
8201
8210
  max-height: none;