CSR-262: fix missing focus outline on checked buttons

This commit is contained in:
Adam Caouette 2022-03-19 10:29:55 -04:00
parent 6a7fc87235
commit de44616680

View file

@ -209,17 +209,23 @@ export default {
}
}
&:focus + label {
box-shadow: 0 0 0 2.5px $blue;
border-radius: 0.5rem;
}
&:checked + label {
background: $blue-100;
box-shadow: 0 0 0 1px $blue;
border-radius: 0.5rem;
}
&:focus + label {
box-shadow: 0 0 0 2.5px $blue;
border-radius: 0.5rem;
}
&:checked {
&:focus + label {
box-shadow: 0 0 0 2.5px $blue;
}
}
&:checked + label {
p {
color: $black;