Skip to content

Commit

Permalink
fix: update typo in variable CSS references
Browse files Browse the repository at this point in the history
Changes to be committed:
modified:   src/componentSupport/_table.scss
  • Loading branch information
blackfalcon committed Sep 25, 2023
1 parent 9d6eefb commit 34b174c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/componentSupport/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@
overflow: scroll;

width: auto;
margin-bottom: (var--ds-size-400, $ds-size-400);
margin-bottom: var(--ds-size-400, $ds-size-400);

border-spacing: (var--ds-size-150, $ds-size-150);
border-spacing: var(--ds-size-150, $ds-size-150);
border-collapse: collapse;

font-weight: (var--ds-text-heading-display-weight, $ds-text-heading-display-weight);
font-weight: var(--ds-text-heading-display-weight, $ds-text-heading-display-weight);

tr {
&:nth-child(even) {
background-color: (var--ds-color-brand-gray-100, $ds-color-brand-gray-100);
background-color: var(--ds-color-brand-gray-100, $ds-color-brand-gray-100);
}
}

th {
text-align: left;

font-weight: (var--ds-text-heading-default-weight, $ds-text-heading-default-weight);
font-weight: var(--ds-text-heading-default-weight, $ds-text-heading-default-weight);
}

@include auro_breakpoint--sm {
Expand All @@ -49,6 +49,6 @@

th,
td {
padding: (var--ds-size-200, $ds-size-200);
padding: var(--ds-size-200, $ds-size-200);
}
}

0 comments on commit 34b174c

Please sign in to comment.