@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.
@@ -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-25T13:39:16.739Z
16
+ * Generated: 2026-06-25T17:16:42.250Z
17
17
  *
18
18
  * To regenerate:
19
19
  * cd design-system && npm run tokens:generate
@@ -5106,18 +5106,24 @@
5106
5106
  flex-shrink: 0;
5107
5107
  }
5108
5108
 
5109
- /* Merchant tile with logo variant — la imagen ocupa el 100% del tile (sin padding,
5110
- sin que se vea el fondo del tile como "borde"). El radius hereda el del tile para
5111
- que la imagen quede recortada a las esquinas redondeadas. */
5109
+ /* Merchant tile with logo variant — el logo (avatar del comercio) llena TODO el tile.
5110
+ `display: block` evita el desborde del auto-grid; `overflow: hidden` recorta la imagen
5111
+ a las esquinas redondeadas del tile. La imagen va CUADRADA (sin border-radius propio):
5112
+ solo el contenedor recorta, evitando el hairline sub-pixel del doble redondeo. El fondo
5113
+ se deja transparente bajo el logo como respaldo (no debe verse púrpura en los bordes). */
5112
5114
  .kds-theme-root .kds-merchant-tile.logo {
5113
5115
  padding: 0;
5116
+ display: block;
5117
+ overflow: hidden;
5118
+ background: transparent;
5114
5119
  }
5115
5120
 
5116
5121
  .kds-theme-root .kds-merchant-tile.logo img {
5117
5122
  width: 100%;
5118
5123
  height: 100%;
5119
5124
  object-fit: cover;
5120
- border-radius: inherit;
5125
+ border-radius: 0;
5126
+ display: block;
5121
5127
  }
5122
5128
 
5123
5129
  .kds-theme-root .kds-merchant-meta {