Why are the checkboxes so big?

https://codepen.io/purplerain01/pen/qBovKXp

Hi! I’m ALMOST done with Project #2. My checkboxes near the end are suddenly too large for my liking. How do I get them the same size as the radio buttons? Real stumped here.

Any other general feedback is welcome. I’m proud of the project and am soooo close to being done. Thanks in advance!

Problem is here, in this selsctor.
I guess you will find it, it’s just one property.

input {
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 2px solid rgba(0,0,0,0.25);
border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

Ope! Been working on this so long didn’t realize it was right under my nose the whole time. Must be time for a break. Thank you!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.