@khipu/design-system 0.2.0-alpha.69 → 0.2.0-alpha.70
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-25T17:16:42.250Z
|
|
15
15
|
*
|
|
16
16
|
* To regenerate:
|
|
17
17
|
* cd design-system && npm run tokens:generate
|
|
@@ -5104,18 +5104,24 @@ dialog#surveyModal button.circle {
|
|
|
5104
5104
|
flex-shrink: 0;
|
|
5105
5105
|
}
|
|
5106
5106
|
|
|
5107
|
-
/* Merchant tile with logo variant —
|
|
5108
|
-
|
|
5109
|
-
|
|
5107
|
+
/* Merchant tile with logo variant — el logo (avatar del comercio) llena TODO el tile.
|
|
5108
|
+
`display: block` evita el desborde del auto-grid; `overflow: hidden` recorta la imagen
|
|
5109
|
+
a las esquinas redondeadas del tile. La imagen va CUADRADA (sin border-radius propio):
|
|
5110
|
+
solo el contenedor recorta, evitando el hairline sub-pixel del doble redondeo. El fondo
|
|
5111
|
+
se deja transparente bajo el logo como respaldo (no debe verse púrpura en los bordes). */
|
|
5110
5112
|
.kds-merchant-tile.logo {
|
|
5111
5113
|
padding: 0;
|
|
5114
|
+
display: block;
|
|
5115
|
+
overflow: hidden;
|
|
5116
|
+
background: transparent;
|
|
5112
5117
|
}
|
|
5113
5118
|
|
|
5114
5119
|
.kds-merchant-tile.logo img {
|
|
5115
5120
|
width: 100%;
|
|
5116
5121
|
height: 100%;
|
|
5117
5122
|
object-fit: cover;
|
|
5118
|
-
border-radius:
|
|
5123
|
+
border-radius: 0;
|
|
5124
|
+
display: block;
|
|
5119
5125
|
}
|
|
5120
5126
|
|
|
5121
5127
|
.kds-merchant-meta {
|