From a098d08d12fe9e9d1bf6a5ff1ede251de01f0af6 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 25 May 2017 21:15:41 +0200 Subject: [PATCH] Fix style regression of buttons not inheriting document font by default (#3310) --- app/javascript/styles/basics.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/javascript/styles/basics.scss b/app/javascript/styles/basics.scss index 08121f03e..e0dd9bdc5 100644 --- a/app/javascript/styles/basics.scss +++ b/app/javascript/styles/basics.scss @@ -45,6 +45,10 @@ body { } } +button { + font-family: inherit; +} + button:focus { outline: none; }