Instantly share code, notes, and snippets.
Last activeDecember 17, 2025 20:26
Save rootl/147a2a3e84f5a4e39da30062cae36a8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| /*Add this under the buttons section of your illiad.css file */ | |
| /* Added for WCAG input/target minimum height and width */ | |
| button,input,optgroup,select,textarea { | |
| min-height:44px; | |
| min-width:44px; | |
| } | |
| /* Added for WCAG input/target minimum height and width */ | |
| checkbox,input[type=checkbox] { | |
| min-height:24px; | |
| min-width:24px; | |
| margin-top:.1rem; | |
| margin-left:-2rem; | |
| } | |
| input[type=radio]{ | |
| min-height:24px; | |
| min-width:24px; | |
| margin-top:1rem; | |
| margin-left:1rem; | |
| } |
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment