From b0e910cd1d7a1c121229ecc90eb48ad98d9c72ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=BCnberg=2C=20Bent?= Date: Wed, 27 Nov 2024 08:00:14 +0100 Subject: [PATCH] fix: h3 too small font size Size was smaller than text (1rem to 1.25rem). --- src/styles.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles.scss b/src/styles.scss index b1b48bd..fce3856 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -44,9 +44,9 @@ h2 { h3 { color: $primary !important; - font-size: $font-size-small-mobile !important; + font-size: $font-size-medium-mobile !important; @include media-breakpoint-up(lg) { - font-size: $font-size-small !important; + font-size: $font-size-medium !important; } }