@khipu/design-system 0.2.0-alpha.31 → 0.2.0-alpha.32

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-04T13:33:39.898Z
16
+ * Generated: 2026-06-05T17:00:00.009Z
17
17
  *
18
18
  * To regenerate:
19
19
  * cd design-system && npm run tokens:generate
@@ -5984,6 +5984,9 @@
5984
5984
  place-items: center;
5985
5985
  color: #fff;
5986
5986
  flex-shrink: 0;
5987
+ /* Clip the slightly-oversized logo (see `.kds-invoice-merchant img`) to the
5988
+ rounded square so it can fully cover the deep-purple background. */
5989
+ overflow: hidden;
5987
5990
  }
5988
5991
 
5989
5992
  .kds-theme-root .kds-invoice-merchant i {
@@ -6003,8 +6006,11 @@
6003
6006
  }
6004
6007
 
6005
6008
  .kds-theme-root .kds-invoice-merchant img {
6006
- width: 100%;
6007
- height: 100%;
6009
+ /* Slightly larger than the container (+2px, centered by the grid) so the
6010
+ logo overflows under the parent's rounded clip and the deep-purple
6011
+ background never peeks through at the corners when the logo shrinks. */
6012
+ width: calc(100% + 2px);
6013
+ height: calc(100% + 2px);
6008
6014
  object-fit: cover;
6009
6015
  border-radius: var(--kds-radius-md);
6010
6016
  }
@@ -7417,7 +7423,8 @@
7417
7423
  margin-bottom: var(--kds-spacing-4);
7418
7424
  }
7419
7425
 
7420
- .kds-theme-root .kds-payment-total .kds-payment-amount .kds-payment-total-decimal-sup {
7426
+ .kds-theme-root .kds-payment-total .kds-payment-amount .kds-payment-total-decimal-sup,
7427
+ .kds-theme-root .kds-invoice-amount .kds-payment-total-decimal-sup {
7421
7428
  font-size: var(--kds-font-size-decimal-sup);
7422
7429
  font-weight: var(--kds-font-weight-semibold);
7423
7430
  position: relative;