Skip to content

Commit

Permalink
fix(base.css): Replacing outline styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Gil committed Apr 29, 2022
1 parent 4d4367a commit b9dcbc3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ html {
line-height: calc(4px + 2ex);
}
:focus {
outline: var(--outline-width, 3px) solid transparent; /* For Windows high contrast mode */
box-shadow: 0px 0px 0px var(--outline-width, 3px) var(--accent-color, Highlight);
/* outline: var(--outline-width, 3px) solid transparent; /* For Windows high contrast mode */
/* box-shadow: 0px 0px 0px var(--outline-width, 3px) var(--accent-color, Highlight); */
outline: .125rem solid var(--accent-color, Highlight);
outline-offset: 0.15em;
}
body {
min-height: 100%; /* full-height content */
Expand Down

0 comments on commit b9dcbc3

Please sign in to comment.