Skip to content

Commit

Permalink
fix: remove additional border on radio buttons (fix #378)
Browse files Browse the repository at this point in the history
  • Loading branch information
greatislander committed Jun 19, 2020
1 parent abe5acb commit 2c01ecd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/assets/styles/components/inputs/_radio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ input[type="radio"]::before {
}
}

input[type="radio"]:focus {
box-shadow: none;
outline: none;
}

input[type="radio"]::before:focus {
outline: none;
}
Expand All @@ -41,7 +46,6 @@ input[type="radio"]:disabled + label {
color: var(--text-value-color-disabled);
}


input[type="radio"]:hover::before {
background-color: var(--checkbox-radio-focus-hover-background-color);
border-color: var(--checkbox-radio-hover-color);
Expand Down

0 comments on commit 2c01ecd

Please sign in to comment.