From 0cc1306d486cfbf69744fe73b1b6d1532809816e Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 19 Nov 2023 00:34:09 +0100 Subject: [PATCH] Added mobile optimization to the Footer styles.sass --- client/src/common/components/Footer/styles.sass | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/client/src/common/components/Footer/styles.sass b/client/src/common/components/Footer/styles.sass index a321b6a..3648e28 100644 --- a/client/src/common/components/Footer/styles.sass +++ b/client/src/common/components/Footer/styles.sass @@ -7,6 +7,8 @@ footer align-items: center margin: 0 2rem user-select: none + flex-wrap: wrap + gap: 1rem .footer-left display: flex @@ -55,4 +57,14 @@ footer text-decoration: underline footer * - z-index: 2 \ No newline at end of file + z-index: 2 + + + +@media screen and (max-width: 700px) + footer + justify-content: center + +@media screen and (max-width: 628px) + .footer-info + display: none \ No newline at end of file