From 35d4cca3642bb5ff833844f0e5234236cf0e1f08 Mon Sep 17 00:00:00 2001 From: stefan080106 Date: Thu, 22 Sep 2022 18:08:16 +0200 Subject: [PATCH] :lipstick: Add margin to footer --- styles/Footer.module.css | 27 +-------------------------- styles/Footer.module.scss | 2 ++ 2 files changed, 3 insertions(+), 26 deletions(-) diff --git a/styles/Footer.module.css b/styles/Footer.module.css index 85b52d6..4afb1d8 100644 --- a/styles/Footer.module.css +++ b/styles/Footer.module.css @@ -1,26 +1 @@ -.Footer { - height: 30px; - width: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - bottom: 0; -} - -.Footer a { - padding: 0 1em; - -webkit-transition: all 0.2s; - transition: all 0.2s; -} - -.Footer a:hover { - opacity: 0.8; -} -/*# sourceMappingURL=Footer.module.css.map */ \ No newline at end of file +.Footer{height:30px;width:100%;display:flex;justify-content:center;align-items:center;position:relative;bottom:0;margin-top:2rem}.Footer a{padding:0 1em;transition:all .2s}.Footer a:hover{opacity:.8} \ No newline at end of file diff --git a/styles/Footer.module.scss b/styles/Footer.module.scss index e04e131..079fbba 100644 --- a/styles/Footer.module.scss +++ b/styles/Footer.module.scss @@ -9,6 +9,8 @@ position: relative; bottom: 0; + margin-top: 2rem; + a { padding: 0 1em; transition: all 0.2s;