From 55d5e07a14c5cc01600520f1b94a791483f2dec3 Mon Sep 17 00:00:00 2001 From: Matt DeCamp Date: Thu, 16 Sep 2021 16:48:57 -0400 Subject: [PATCH] footer styling --- src/assets/styles/components/_footer.scss | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/assets/styles/components/_footer.scss b/src/assets/styles/components/_footer.scss index e69de29..d826d49 100644 --- a/src/assets/styles/components/_footer.scss +++ b/src/assets/styles/components/_footer.scss @@ -0,0 +1,25 @@ +footer { + width: 100%; + max-width: 100vw; + background: var(--background-color-secondary); + + color: var(--text-secondary); + & a { + color: var(--text-secondary); + text-decoration: none; + &:hover { + text-decoration: underline; + } + } +} + +#footer--container { + width: 90%; + max-width: var(--max-width); + margin: 0 auto; + padding: var(--s2) 0; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; +} \ No newline at end of file