From 9273b12dd2c6a880c2536bf3ed0c0ffc0655d8ad Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 18 Nov 2019 09:22:40 +0100 Subject: [PATCH] Add credits --- src/components/Footer.vue | 55 +++++++++++++++++++++++++++------------ 1 file changed, 39 insertions(+), 16 deletions(-) diff --git a/src/components/Footer.vue b/src/components/Footer.vue index e2d3bcc..1fdb7d5 100644 --- a/src/components/Footer.vue +++ b/src/components/Footer.vue @@ -1,19 +1,33 @@ @@ -26,18 +40,27 @@ margin-top: 30px; background-color: #fff; padding: 30px 200px; - display: flex; - justify-content: space-between; - > div { - a { - display: block; - color: #000; - font-weight: $font-semibold; - margin-bottom: 10px; + .links { + display: flex; + justify-content: space-between; + + > div { + a { + display: block; + color: #000; + font-weight: $font-semibold; + margin-bottom: 10px; + } } } + .credits { + margin-top: 40px; + font-size: 12px; + text-align: center; + } + @media screen and (max-width: $responsive-screen) { padding: 30px; }