From 9cccee40d0c8ccf13548a21d99ef4123f1143301 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 19 Nov 2023 00:34:03 +0100 Subject: [PATCH] Added mobile optimization to the Header styles.sass --- client/src/common/components/Header/styles.sass | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/client/src/common/components/Header/styles.sass b/client/src/common/components/Header/styles.sass index 175358d..71334f4 100644 --- a/client/src/common/components/Header/styles.sass +++ b/client/src/common/components/Header/styles.sass @@ -9,5 +9,14 @@ header svg font-size: 26pt + h1 + margin: 0 + header * - z-index: 2 \ No newline at end of file + z-index: 2 + +@media screen and (max-width: 500px) + header svg + font-size: 18pt + header h1 + font-size: 1.5rem \ No newline at end of file