From ef8012151c80fe03a5e917e35f6645533ead7fa1 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Tue, 21 Jul 2020 18:47:16 +0200 Subject: [PATCH] Updated global with pos-abs and h4 rules. --- frontend/styles/global.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/styles/global.scss b/frontend/styles/global.scss index 99a5a97..2b2981e 100644 --- a/frontend/styles/global.scss +++ b/frontend/styles/global.scss @@ -41,6 +41,9 @@ h3 { font-size: calc(0.785 * var(--text-lg)); } } +h4 { + font-size: var(--text-md); +} .flex { display: flex; @@ -77,6 +80,12 @@ h3 { } +.pos-abs { + position: absolute; + z-index: 10; +} + + .col-wrap { padding-left: 120px; padding-right: 120px; @@ -117,6 +126,7 @@ h3 { @include mobile { padding-top: var(--space-xl); + padding-bottom: var(--space-xl); } }