Skip to content

Commit

Permalink
♻️ #11 - fix: fix incorrect variable name for border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvandescheur committed Feb 6, 2024
1 parent 7976b2c commit 888dc0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/badge/badge.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.mykn-badge {
background-color: var(--theme-color-primary-200);
align-items: center;
border-radius: var(--border-radus-m);
border-radius: var(--border-radius-m);
display: inline-flex;
font-family: Inter, sans-serif;
font-size: var(--typography-font-size-body-xs);
Expand Down
6 changes: 3 additions & 3 deletions src/components/datagrid/datagrid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.mykn-datagrid {
background-color: var(--typography-color-background);
border-radius: var(--border-radus-m);
border-radius: var(--border-radius-m);

&__table {
border-spacing: 0;
Expand Down Expand Up @@ -58,7 +58,7 @@

&__caption {
background-color: var(--typography-color-background);
border-radius: var(--border-radus-m);
border-radius: var(--border-radius-m);
display: block;
}

Expand Down Expand Up @@ -138,7 +138,7 @@
}

.mykn-toolbar {
border-radius: var(--border-radus-m);
border-radius: var(--border-radius-m);
}

.mykn-paginator .mykn-icon--spin:first-child {
Expand Down

0 comments on commit 888dc0f

Please sign in to comment.