From e7d2a0d42fa4aef1b606f3c4cc120b4306819a88 Mon Sep 17 00:00:00 2001 From: Kris Date: Wed, 16 Jan 2019 20:59:31 -0500 Subject: [PATCH] UX: Larger/Largest font-sizes should be 1px larger on mobile --- app/assets/stylesheets/mobile/discourse.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mobile/discourse.scss b/app/assets/stylesheets/mobile/discourse.scss index e64856cc367..c91e1853156 100644 --- a/app/assets/stylesheets/mobile/discourse.scss +++ b/app/assets/stylesheets/mobile/discourse.scss @@ -5,7 +5,13 @@ // Base Elements html { - font-size: 15px; // Increasing overall font-size on mobile by 1px + font-size: $base-font-size + 1; // Increasing overall font-size on mobile by 1px + &.text-size-larger { + font-size: $base-font-size-larger + 1; + } + &.text-size-largest { + font-size: $base-font-size-largest + 1; + } } body {