@khipu/design-system 0.2.0-alpha.105 → 0.2.0-alpha.107
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.
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
|
|
13
13
|
* Source: design-system/src/tokens/tokens.json
|
|
14
|
-
* Generated: 2026-07-07T15:
|
|
14
|
+
* Generated: 2026-07-07T15:39:54.699Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -1574,6 +1574,15 @@ a.kds-btn.kds-btn-md {
|
|
|
1574
1574
|
display: none !important;
|
|
1575
1575
|
}
|
|
1576
1576
|
|
|
1577
|
+
/* BeerCSS también encoge los íconos hijos de button a 1.5rem (min/max);
|
|
1578
|
+
un botón pelado respeta el tamaño propio del ícono. */
|
|
1579
|
+
.kds-btn-bare > :is(img, svg) {
|
|
1580
|
+
max-block-size: none !important;
|
|
1581
|
+
max-inline-size: none !important;
|
|
1582
|
+
min-block-size: 0 !important;
|
|
1583
|
+
min-inline-size: 0 !important;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1577
1586
|
/* Gap utilities */
|
|
1578
1587
|
.kds-gap-1 { gap: var(--kds-spacing-1); }
|
|
1579
1588
|
.kds-gap-2 { gap: var(--kds-spacing-2); }
|
|
@@ -7105,6 +7114,13 @@ button.kds-btn-success::after {
|
|
|
7105
7114
|
fill: none;
|
|
7106
7115
|
}
|
|
7107
7116
|
|
|
7117
|
+
/* BeerCSS fuerza fill:currentcolor en todo svg, pisando el atributo de
|
|
7118
|
+
presentación; un SVG que declara fill="none" (ilustraciones de trazo)
|
|
7119
|
+
debe conservarlo. */
|
|
7120
|
+
svg[fill='none'] {
|
|
7121
|
+
fill: none;
|
|
7122
|
+
}
|
|
7123
|
+
|
|
7108
7124
|
/* -- Bottom sheet description (subtle / smaller) -- */
|
|
7109
7125
|
.kds-bottom-sheet-description-subtle {
|
|
7110
7126
|
color: var(--kds-color-text-secondary);
|