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