johno/furtive

input checkbox "state" unviewable on some devices

Open

#61 创建于 2017年12月8日

在 GitHub 查看
 (0 评论) (0 反应) (0 负责人)HTML (610 star) (43 fork)batch import
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;
}

screenshot_20171208-132449

贡献者指南