From accf50cf1bdad22c7af5bbb325523d12dfa4fce5 Mon Sep 17 00:00:00 2001 From: REJack Date: Mon, 16 Sep 2019 12:11:14 +0200 Subject: [PATCH] renamed `.text-xs` to `.text-md` and created a correct `.text-xs` --- build/scss/_text.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build/scss/_text.scss b/build/scss/_text.scss index 3ae346f00..7257319b5 100644 --- a/build/scss/_text.scss +++ b/build/scss/_text.scss @@ -9,11 +9,15 @@ } } +.text-xs { + font-size: $font-size-xs !important; +} + .text-sm { font-size: $font-size-sm !important; } -.text-xs { +.text-md { font-size: $font-size-base !important; }