@khipu/design-system 0.2.0-alpha.78 → 0.2.0-alpha.79
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-06-
|
|
14
|
+
* Generated: 2026-06-26T14:17:39.448Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -5682,6 +5682,15 @@ dialog#surveyModal button.circle {
|
|
|
5682
5682
|
|
|
5683
5683
|
.kds-expand-toggle i {
|
|
5684
5684
|
font-size: var(--kds-font-size-base);
|
|
5685
|
+
/* BeerCSS estiliza el `i` bare como caja flex de 30px (height/width/min: 30px), que
|
|
5686
|
+
inflaba el toggle y dejaba aire vertical de más alrededor del label. La achicamos a
|
|
5687
|
+
1.25em MANTENIENDO el centrado flex de BeerCSS (display:flex/align/justify) — así el
|
|
5688
|
+
caret queda compacto Y ópticamente centrado con el texto (no usar height:auto ni
|
|
5689
|
+
line-height:1: descentran el glifo). */
|
|
5690
|
+
width: 1.25em;
|
|
5691
|
+
height: 1.25em;
|
|
5692
|
+
min-width: 0;
|
|
5693
|
+
min-height: 0;
|
|
5685
5694
|
transition: transform var(--kds-transition-shorter, 0.2s);
|
|
5686
5695
|
}
|
|
5687
5696
|
|
|
@@ -7089,15 +7098,14 @@ button.kds-btn-success::after {
|
|
|
7089
7098
|
}
|
|
7090
7099
|
|
|
7091
7100
|
/* Invoice sticky card padding (mobile).
|
|
7092
|
-
Top: estático 12px. Bottom: progresivo
|
|
7093
|
-
El padding-bottom animado
|
|
7094
|
-
reduce convencionalmente al colapsar — sin depender de que el clip-path
|
|
7101
|
+
Top: estático 12px. Bottom: progresivo 16px (expandido, = desktop) → 8px (colapsado).
|
|
7102
|
+
El padding-bottom animado se reduce al colapsar — sin depender de que el clip-path
|
|
7095
7103
|
corte el padding abruptamente. */
|
|
7096
7104
|
.kds-payment-flow .kds-card-elevated.kds-invoice-sticky {
|
|
7097
7105
|
padding-top: var(--kds-spacing-1-5);
|
|
7098
7106
|
padding-bottom: calc(
|
|
7099
|
-
var(--kds-spacing-2
|
|
7100
|
-
- var(--kds-spacing-1
|
|
7107
|
+
var(--kds-spacing-2)
|
|
7108
|
+
- var(--kds-spacing-1) * var(--collapse-progress, 0)
|
|
7101
7109
|
);
|
|
7102
7110
|
}
|
|
7103
7111
|
|