Skip to content

Commit

Permalink
focusable: add tabindex selector (#1380)
Browse files Browse the repository at this point in the history
* focusable: add tabindex selector

* fix missing comma typo
  • Loading branch information
powellkerry authored Oct 28, 2024
1 parent 8857ee7 commit 20f8c80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/web-components/src/mixins/focusable.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ h1:focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
#form-question
[role='option']:focus {
[role='option']:focus,
*[tabindex]:focus {
outline: 2px solid var(--vads-color-action-focus-on-light);
outline-offset: 2px;
}

0 comments on commit 20f8c80

Please sign in to comment.