Skip to content Skip to sidebar Skip to footer

Input Checkbox Ridiculously Big On IOS Safari

Checked my site on iOS Safari and I get this huge checkbox input that looks like it's system styled. Can this be styled, or maybe made a bit smaller? The issue can be checked here

Solution 1:

Set the padding of the checkbox to 0 (or to a value more to your liking).

.gdlr-core-input-wrap.gdlr-core-large input:not([type="button"]):not([type="submit"]):not([type="file"]) {
  /* padding: 20px 22px; */
  padding: 0;
}

enter image description here


Post a Comment for "Input Checkbox Ridiculously Big On IOS Safari"