From 572a1405c3cfe4aa8e09fba6caf1375d2e2eb8b5 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Tue, 6 Nov 2018 16:24:34 +0100 Subject: [PATCH] Prevent font size change for buttons with class btn-lg --- app/assets/stylesheets/base.css.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/base.css.scss b/app/assets/stylesheets/base.css.scss index 4e183f72..0d8a9413 100644 --- a/app/assets/stylesheets/base.css.scss +++ b/app/assets/stylesheets/base.css.scss @@ -30,7 +30,9 @@ span.caret { .btn { -webkit-font-smoothing: antialiased; font-weight: 500; - font-size: 0.875rem; + :not(.btn-lg) { + font-size: 0.875rem; + } } .progress {