Exclude radio and checkbox inputs from input styling

This commit is contained in:
tijsklaren 2023-02-05 12:41:29 +01:00
parent d05b4ad16b
commit 6f3b270e35
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ form{
flex-direction: column; flex-direction: column;
} }
input, button, textarea, select, .button{ input, button, textarea, select, .button, input:not(input[type='radio'], input[type='checkbox']){
/* We don't want the stupid browser appearance */ /* We don't want the stupid browser appearance */
appearance: none; appearance: none;