Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I always tend to click on the radio option labels, as it's a larger click target, easier to reach with the mouse, so I missed that clicking the radio button (circular control) was broken. 98.css hides the real `<input type="radio">` and replaces it with a pseudo element on the `<label>` element to visually replace it. Normally it's clickable in the same way that the `<label>` is clickable, since the pseudo element is logically part of the `<label>`. However, I have an overly broad selector for pseudo elements, which was making them unclickable. Fixes #311 Fixes #312
- Loading branch information