anentrypoint-design 0.0.459 → 0.0.460

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
@@ -4197,8 +4197,18 @@
4197
4197
 
4198
4198
  .ds-247420 .aicat-portrait { display: inline-flex; align-items: center; gap: var(--space-2-5); padding: var(--space-1) 0; }
4199
4199
  .ds-247420 .aicat-face {
4200
- /* 24px is the ICON size inside a 32px round chip see .chat-file .glyph. */
4201
- width: 32px; height: 32px; font-size: 24px;
4200
+ /* The face is 3 lines of ascii art ( /\_/\ , ( o.o ) , > ^ < ), not a
4201
+ single icon glyph -- the previous 24px/line-height:normal sizing (sized
4202
+ like .chat-file .glyph's single-char icon) ran to ~3 line-heights tall
4203
+ and clipped the ear/whisker rows against this box's fixed 32px height
4204
+ + overflow:hidden. pico (10px) + line-height:1 fits all 3 lines in 30px.
4205
+ padding:0 overrides the global `pre { padding: var(--space-5) }` (32px)
4206
+ -- box-sizing:border-box + that padding alone exceeded the declared
4207
+ 32x32 box, so the box never actually enforced 32x32 and rendered at its
4208
+ forced min-content size instead, clipping the art regardless of font
4209
+ size. */
4210
+ width: 32px; height: 32px; font-size: var(--fs-pico); line-height: 1;
4211
+ padding: 0;
4202
4212
  display: inline-flex; align-items: center; justify-content: center;
4203
4213
  background: color-mix(in oklab, var(--mascot) 22%, var(--bg-2));
4204
4214
  border-radius: 50%; flex-shrink: 0;