See image and jsfiddle below. It seems to have to do with the increase in font-size. Is there an alternative way to increase the size of the checkbox while maintaining a custom surrounding box-shadow on Chrome (68)? I've tried a few things.
See: https://jsfiddle.net/tnpa6r80/
input[type='checkbox'] {
font-size: 20px;
}
input[type='checkbox']:focus {
border-color: red;
box-shadow: 0 0 6px red;
outline: none;
}
<input type="checkbox"/>