Skip to content

Commit

Permalink
Increase color contrast on focus highlight for counter button. Fixes d…
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveSandersonMS committed Aug 4, 2022
1 parent 5f01be1 commit bbd5404
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/content/Angular-CSharp/ClientApp/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ a {
color: #0366d6;
}

.btn:focus, .btn:active:focus {
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

code {
color: #e01a76;
}
Expand Down
4 changes: 4 additions & 0 deletions src/content/React-CSharp/ClientApp/src/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ a {
color: #0366d6;
}

.btn:focus, .btn:active:focus {
box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

code {
color: #E01A76;
}
Expand Down

0 comments on commit bbd5404

Please sign in to comment.