Skip to content

Commit

Permalink
(#289) Remove black outlines on focus
Browse files Browse the repository at this point in the history
By default, most browsers place a black outline around the currently-focused element. On mstacm.org, it looks kind of ugly, so some people want it changed. As a quick fix, this commit completely up removes the black outline around focused elements.
People who use Tab to navigate  webpages aren't going to be too happy though, as it's their often only indication of what their cursor is currently on. So I'm hoping we can eventually come up with something else that adds that funcionality back in the future.
  • Loading branch information
garlic-os committed Sep 23, 2020
1 parent e606b70 commit 65f3654
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/src/static/css/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,8 @@ body {
margin: 0;
padding: 0;
font-family: "Nunito Sans", sans-serif;
}
}

:focus {
outline: none;
}

0 comments on commit 65f3654

Please sign in to comment.