@khipu/design-system 0.2.0-alpha.104 → 0.2.0-alpha.106
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-
|
|
14
|
+
* Generated: 2026-07-07T15:29:41.602Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -1549,6 +1549,40 @@ a.kds-btn.kds-btn-md {
|
|
|
1549
1549
|
align-self: center;
|
|
1550
1550
|
}
|
|
1551
1551
|
|
|
1552
|
+
/* Botón "pelado": neutraliza el chrome de button de BeerCSS (pill 2.5rem,
|
|
1553
|
+
radius, fondo y hover) para botones de terceros con su propio look,
|
|
1554
|
+
p.ej. los share buttons de react-share (ícono circular). */
|
|
1555
|
+
.kds-btn-bare,
|
|
1556
|
+
.kds-btn-bare:hover,
|
|
1557
|
+
.kds-btn-bare:focus,
|
|
1558
|
+
.kds-btn-bare:active {
|
|
1559
|
+
background: none !important;
|
|
1560
|
+
block-size: auto !important;
|
|
1561
|
+
inline-size: auto !important;
|
|
1562
|
+
min-inline-size: 0 !important;
|
|
1563
|
+
padding: 0 !important;
|
|
1564
|
+
margin: 0 !important;
|
|
1565
|
+
border: 0 !important;
|
|
1566
|
+
border-radius: var(--kds-radius-full) !important;
|
|
1567
|
+
box-sizing: border-box !important;
|
|
1568
|
+
box-shadow: none !important;
|
|
1569
|
+
transform: none !important;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.kds-btn-bare::before,
|
|
1573
|
+
.kds-btn-bare::after {
|
|
1574
|
+
display: none !important;
|
|
1575
|
+
}
|
|
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
|
+
|
|
1552
1586
|
/* Gap utilities */
|
|
1553
1587
|
.kds-gap-1 { gap: var(--kds-spacing-1); }
|
|
1554
1588
|
.kds-gap-2 { gap: var(--kds-spacing-2); }
|