Skip to content

Commit

Permalink
Merge pull request #544 from wpmudev/fix/SUI-571
Browse files Browse the repository at this point in the history
πŸ› fix(accordion): accordion item focus issue.
  • Loading branch information
rtbfreitas authored Jun 20, 2023
2 parents 3ba3edf + 852d2ff commit 9478514
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions assets/scss/shared-ui/_accordions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
}

.sui-box {
&:focus {
border: 2px solid palette(blue, default);
&:focus,
&:focus-within {
border-radius: 0;
border: none;
box-shadow: inset 0 0 0 2px palette(blue, default);
}
}
}
Expand Down

0 comments on commit 9478514

Please sign in to comment.