Skip to content

Commit

Permalink
fix(buttons): fixed buttons focus statuses
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagohernandez committed Aug 25, 2023
1 parent 94709a4 commit f4b490a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/theme/GlobalStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,10 @@ svg text{
.button:hover {
cursor: pointer;
}
.button:focus {
.button:focus,.button:focus-within {
outline: none;
}
.button:focus-within {
.button:focus-visible {
outline: 2px solid ${({ theme }) => theme.accessibility.focusWithinColor};
}
.button[disabled]:hover {
Expand Down

0 comments on commit f4b490a

Please # to comment.