From 7579fa78c2a57b138b275d244b594b904c83485d Mon Sep 17 00:00:00 2001 From: Trey Pendragon Date: Tue, 1 Oct 2024 14:13:36 -0700 Subject: [PATCH] Don't increase size of text in boxes. --- app/assets/stylesheets/base/typography.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/base/typography.scss b/app/assets/stylesheets/base/typography.scss index 384755ea8..bbfedc4ed 100644 --- a/app/assets/stylesheets/base/typography.scss +++ b/app/assets/stylesheets/base/typography.scss @@ -66,10 +66,13 @@ body .form-control { } } -[dir='rtl'], input[type='text'] { +[dir='rtl'] { font-family: verdana, arial; font-size: 150%; } +input[type='text'] { + font-family: verdana, arial; +} .breadcrumb-item[dir='rtl'] { font-size: 100%; }