Skip to content

Commit

Permalink
fix(tokens): replace invalid tokens #229
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanjones243 committed Jan 2, 2024
1 parent 423502b commit 7652913
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $auro-rgb-color-base-white-03: rgba(255, 255, 255, .03);
// focus-visible mixin
@mixin focus-visible {
outline: 3px solid transparent;
box-shadow: inset 0 0 0 1px var(--ds-color-border-focus-inverse, $ds-color-border-focus-inverse), inset 0 0 0 3px var(--ds-color-background-lightest, $ds-color-background-lightest);
box-shadow: inset 0 0 0 1px var(--ds-color-base-white, $ds-color-base-white), inset 0 0 0 3px var(--ds-color-background-lightest, $ds-color-background-lightest);

// auro-button--secondary
&[variant='secondary'],
Expand All @@ -65,7 +65,7 @@ $auro-rgb-color-base-white-03: rgba(255, 255, 255, .03);
// auro-buttonOndark
&Ondark {
background-color: var(--ds-color-ui-default-inverse, $ds-color-ui-default-inverse);
box-shadow: inset 0 0 0 3px var(--ds-color-border-focus-inverse, $ds-color-border-focus-inverse);
box-shadow: inset 0 0 0 3px var(--ds-color-base-white, $ds-color-base-white);

// auro-buttonOndark--secondary
&[variant='secondary'],
Expand Down

0 comments on commit 7652913

Please sign in to comment.