@khipu/design-system 0.2.0-alpha.81 → 0.2.0-alpha.82
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.
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*
|
|
14
14
|
* AUTO-GENERATED FILE - DO NOT EDIT MANUALLY
|
|
15
15
|
* Source: design-system/src/tokens/tokens.json
|
|
16
|
-
* Generated: 2026-06-
|
|
16
|
+
* Generated: 2026-06-30T19:28:48.705Z
|
|
17
17
|
*
|
|
18
18
|
* To regenerate:
|
|
19
19
|
* cd design-system && npm run tokens:generate
|
|
@@ -2472,12 +2472,12 @@
|
|
|
2472
2472
|
padding-block-start: 1.5rem;
|
|
2473
2473
|
}
|
|
2474
2474
|
|
|
2475
|
-
/*
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
.kds-theme-root .field.label
|
|
2480
|
-
|
|
2475
|
+
/* Label en reposo (estado "abajo", como placeholder): font-size menor al 1rem de BeerCSS
|
|
2476
|
+
para que un label largo no estorbe con un ícono (prefix/suffix) del input. Token sm
|
|
2477
|
+
(13–14px, siempre < 1rem del input incluso en desktop). Al flotar, BeerCSS lo reduce a
|
|
2478
|
+
.75rem con mayor especificidad, así que esto solo afecta el reposo. */
|
|
2479
|
+
.kds-theme-root .field.label > label {
|
|
2480
|
+
font-size: var(--kds-font-size-sm);
|
|
2481
2481
|
}
|
|
2482
2482
|
|
|
2483
2483
|
/* ==========================================
|
|
@@ -7063,10 +7063,15 @@
|
|
|
7063
7063
|
/* Variante sin radio superior: pantallas de resultado (éxito/fallo/timeout) que van
|
|
7064
7064
|
SIN header arriba — la body card va sola y su tope queda plano (flush) en vez de
|
|
7065
7065
|
con esquinas redondeadas sueltas. El padding del card sigue manejando el inset. */
|
|
7066
|
-
|
|
7067
|
-
.
|
|
7068
|
-
|
|
7069
|
-
|
|
7066
|
+
/* Tope plano SOLO en mobile (< 768px): la body card se pega al borde superior del widget
|
|
7067
|
+
(igual que el header sticky, que también aplana el tope solo en mobile). En desktop la card
|
|
7068
|
+
va centrada y separada, así que conserva el border-radius superior redondeado. */
|
|
7069
|
+
@media (max-width: 767px) {
|
|
7070
|
+
.kds-theme-root .kds-screen > .kds-card-elevated.kds-card-elevated--flush-top,
|
|
7071
|
+
.kds-theme-root .kds-card-elevated.kds-card-elevated--flush-top {
|
|
7072
|
+
border-top-left-radius: 0;
|
|
7073
|
+
border-top-right-radius: 0;
|
|
7074
|
+
}
|
|
7070
7075
|
}
|
|
7071
7076
|
|
|
7072
7077
|
/* Payment stage — full-viewport centered wrapper.
|