@kiefer-tek/sophea-design-system 0.18.0 → 0.18.1

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.
Files changed (2) hide show
  1. package/dist/index.css +10 -0
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -4556,6 +4556,16 @@ a.sn-Button-module__btn--Fx11X[aria-disabled="true"] {
4556
4556
  }
4557
4557
 
4558
4558
  .sn-Tabs-module__trigger-pill--IVool {
4559
+ /* border-box + min-height pins the trigger to a single height regardless of
4560
+ content (text-only vs icon vs count): text is 13px tall, an icon 16px, so
4561
+ without this a text-only strip rendered 3px shorter (27px) than an
4562
+ icon-bearing one (30px) — the cross-page inconsistency. inline-flex centers
4563
+ whatever content sits inside the consumer's row span. */
4564
+ box-sizing: border-box;
4565
+ display: inline-flex;
4566
+ align-items: center;
4567
+ justify-content: center;
4568
+ min-height: 30px;
4559
4569
  padding: 7px 16px;
4560
4570
  font-size: 13px;
4561
4571
  color: var(--text-04);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiefer-tek/sophea-design-system",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "Sophea design system: tokens, components, Tailwind preset.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",