From 0c95bd2b3f45a9c7a0454dd64e597fdc14ccf9bc Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 22 May 2023 13:58:02 +0000 Subject: [PATCH] Add button styling to `.input[type="submit"]` and `.input[type="reset"]` Fixes #63. --- src/selectorsets/root.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/selectorsets/root.less b/src/selectorsets/root.less index c4d1686..448b653 100644 --- a/src/selectorsets/root.less +++ b/src/selectorsets/root.less @@ -100,7 +100,7 @@ @input-color: ~':where(input[type="color"])'; @input-file: ~':where(input[type="file"])'; @input-range: ~':where(input[type="range"])'; -@input-button: ~':where(input[type="button"], button)'; +@input-button: ~':where(input[type="button"], .input[type="submit"], .input[type="reset"], button)'; @form-flex: ~':where(.form-flex)'; @form-flex-content: ~':where(.form-flex-content, p)';