Skip to content

Commit

Permalink
update focus mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
stacyk committed Sep 27, 2023
1 parent dc9cf67 commit 776a54b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sass/config/_focus.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
/// @group focus
@mixin focus-ring() {
/* stylelint-disable declaration-block-no-redundant-longhand-properties */
outline-color: var(--focus-ring, var(--text, currentColor));
outline-color: var(--focus-ring, currentColor);
outline-offset: var(--outline-offset, 0);
outline-style: var(--outline-style, dotted);
outline-width: var(--outline-width, var(--border-width));
outline-style: var(--outline-style, solid);
outline-width: var(--outline-width, var(--border-width-md));
/* stylelint-enable declaration-block-no-redundant-longhand-properties */
}

0 comments on commit 776a54b

Please sign in to comment.