From ef6dde7e94da52bc02c1db7652cf108acf9fc706 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 18 Nov 2023 17:40:59 +0100 Subject: [PATCH] Created the Footer styles.sass --- .../src/common/components/Footer/styles.sass | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 client/src/common/components/Footer/styles.sass diff --git a/client/src/common/components/Footer/styles.sass b/client/src/common/components/Footer/styles.sass new file mode 100644 index 0000000..b0ad055 --- /dev/null +++ b/client/src/common/components/Footer/styles.sass @@ -0,0 +1,55 @@ +@import "@styles/colors" + +footer + height: 10vh + display: flex + justify-content: space-between + align-items: center + margin: 0 2rem + user-select: none + +.footer-left + display: flex + gap: 1rem + +.footer-home + display: flex + align-items: center + padding: 0 0.5rem + height: 3rem + justify-content: center + color: $text + + svg + font-size: 22pt + +.footer-info + display: flex + padding: 0 1rem + height: 3rem + align-items: center + gap: 1rem + cursor: pointer + text-decoration: none + + img + width: 3rem + + h2 + margin: 0 + color: $text + +.footer-legal + display: flex + padding: 0 1rem + height: 3rem + align-items: center + gap: 1rem + + a + text-decoration: none + color: $text + font-weight: 600 + +footer * + z-index: 2 \ No newline at end of file