From aa332ef5f7ed1c293cef9a47596a775fbc0c79d8 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 21 Apr 2022 13:14:01 +0000 Subject: [PATCH] Fix issues with styling forms with large buttons as submit buttons --- src/stylesheets/base/_form.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/stylesheets/base/_form.scss b/src/stylesheets/base/_form.scss index 6e95771..0d08df7 100644 --- a/src/stylesheets/base/_form.scss +++ b/src/stylesheets/base/_form.scss @@ -46,7 +46,10 @@ form { input[type='submit'] { width: 100%; - padding: 1rem 0; + + &:not(.btn--lg) { + padding: 1rem 0; + } } @include respond-to('medium') {