From 6f3b270e350a7005356b7ac416163ec0746beec4 Mon Sep 17 00:00:00 2001 From: tijsklaren Date: Sun, 5 Feb 2023 12:41:29 +0100 Subject: [PATCH] Exclude radio and checkbox inputs from input styling --- src/css/forms.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/forms.css b/src/css/forms.css index 228faf6..36a3097 100644 --- a/src/css/forms.css +++ b/src/css/forms.css @@ -5,7 +5,7 @@ form{ 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 */ appearance: none;