@kolkrabbi/kol-theme 0.128.0 → 0.129.0
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/kol-components-atoms.css +7 -0
- package/package.json +1 -1
package/kol-components-atoms.css
CHANGED
|
@@ -241,6 +241,13 @@
|
|
|
241
241
|
* Chrome belongs here, layered, so utilities stay sovereign. The flex
|
|
242
242
|
* centering comes from .kol-btn; the icon-only extra is only line-height. */
|
|
243
243
|
.kol-btn-icon {
|
|
244
|
+
/* A FIXED SQUARE ON EVERY RUNG (IconButtonNoFlexShrink, kol-monitor
|
|
245
|
+
* 2026-09-02): in a shrink-to-fit flex row WebKit measured the icon-only
|
|
246
|
+
* button's contribution as its GLYPH (20 + 2 border = 22), not the 32px
|
|
247
|
+
* rule, so the row came out short and squeezed the square to 22×32 — the
|
|
248
|
+
* gear a sliver beside a 32px Dropdown. `flex: none` fixes the measurement
|
|
249
|
+
* AND the shrink; `flex-shrink: 0` alone fixed only the shrink. */
|
|
250
|
+
flex: none;
|
|
244
251
|
line-height: 0;
|
|
245
252
|
}
|
|
246
253
|
/* Icon-only is a GEOMETRY condition, not a variant (2026-07-28, user-ordered):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.129.0",
|
|
4
4
|
"description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|