Skip to content

Commit

Permalink
Fix invalid design token in reset.css file (#2722)
Browse files Browse the repository at this point in the history
* fix(design-sytem): fix invalid design token in reset css file

* chore: changeset added
  • Loading branch information
CarlosCortizasCT authored Feb 14, 2024
1 parent da971d1 commit 78d878c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/afraid-beans-grin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@commercetools-uikit/design-system': patch
---

Fix invalid CSS variable usage in reset.css exported file.
4 changes: 2 additions & 2 deletions design-system/materials/resets.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

html,
body {
color: var(--font-color-for-text);
color: var(--color-solid);
font-family: var(--font-family);
margin: 0;
padding: 0;
Expand Down Expand Up @@ -38,4 +38,4 @@ a {

p {
margin: 0;
}
}

0 comments on commit 78d878c

Please sign in to comment.