Use correct colors for radios on payment method box

This commit is contained in:
Jonathan Sadowski 2020-12-04 16:56:06 -06:00
parent 2cb314edfc
commit 0e40a078db
1 changed files with 2 additions and 2 deletions

View File

@ -1963,12 +1963,12 @@ a.reset_variations {
input[type=radio] {
& + label::before {
background: #000 !important;
background: #fff !important;
border: var(--form--border-width) solid #000 !important;
}
&:checked + label::before {
background: #fff !important;
background: #000 !important;
}
}
}