Is there a way to make the box shadow on a checkbox input appear as a circle when hovered over, rather than taking the shape of the element itself? How can I achieve this effect?
<input type="checkbox" class="check">
<label for="checkbox">Pepperoni</label>
.check {
&:hover {
box-shadow: 0 0 0 6px red;
}
}