From 52e9b07edc2c508428d20427ffc64260a5c8dc00 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 27 Feb 2022 00:36:21 -0800 Subject: [PATCH] Move font-small to font-tiny and add 13px size --- components/Fieldset/index.scss | 2 +- components/SummonGrid/index.scss | 2 +- styles/variables.scss | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/components/Fieldset/index.scss b/components/Fieldset/index.scss index 949a05eb..98e37113 100644 --- a/components/Fieldset/index.scss +++ b/components/Fieldset/index.scss @@ -21,7 +21,7 @@ .InputError { color: $error; - font-size: $font-small; + font-size: $font-tiny; margin: $unit 0; padding: ($unit / 2) ($unit * 2); } diff --git a/components/SummonGrid/index.scss b/components/SummonGrid/index.scss index e1c478aa..b228e2a4 100644 --- a/components/SummonGrid/index.scss +++ b/components/SummonGrid/index.scss @@ -6,7 +6,7 @@ & .Label { color: $grey-50; - font-size: $font-small; + font-size: $font-tiny; font-weight: $medium; margin-bottom: $unit; text-align: center; diff --git a/styles/variables.scss b/styles/variables.scss index 1e0dc59f..55d0a0ff 100644 --- a/styles/variables.scss +++ b/styles/variables.scss @@ -59,7 +59,8 @@ $medium: 500; $bold: 600; // Font size -$font-small: 11px; +$font-tiny: 11px; +$font-small: 13px; $font-button: 15px; $font-regular: 16px; $font-large: 21px;