good first issue
描述
When viewing on a Galaxy Tab A/Firefox Browser, checkbox inputs are elongated and the visible "check/x" is never shown...
Screenshot attached from your site.
I traced it down to this code:
input[type="checkbox"]` {
padding: .5rem;
I 've manually override it with this...
input[type="checkbox"] {
padding: 0;
margin: .5rem;
}
