From d4c4f780577efe28819667c8564126917360cafb Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Wed, 28 Aug 2019 23:50:58 +0200 Subject: Add JoinUs --- src/App.vue | 5 +++++ src/components/Footer.vue | 1 + src/components/JoinUs.vue | 39 +++++++++++++++++++++++++++++++++++++++ src/components/NavBar.vue | 2 ++ 4 files changed, 47 insertions(+) create mode 100644 src/components/JoinUs.vue diff --git a/src/App.vue b/src/App.vue index 1016a3f..4742bfe 100644 --- a/src/App.vue +++ b/src/App.vue @@ -44,12 +44,17 @@ body { margin: 0; } +* { + box-sizing: border-box; +} + #app { font-family: "Roboto Slab", serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #181818; text-align: center; + align-items: center; display: flex; flex-direction: column; diff --git a/src/components/Footer.vue b/src/components/Footer.vue index 693f8c2..63f8e9a 100644 --- a/src/components/Footer.vue +++ b/src/components/Footer.vue @@ -41,6 +41,7 @@ export default { background-color: #507b34; color: #ffffff; min-height: 175px; + width: 100vw; display: flex; flex-direction: row; diff --git a/src/components/JoinUs.vue b/src/components/JoinUs.vue new file mode 100644 index 0000000..55d8171 --- /dev/null +++ b/src/components/JoinUs.vue @@ -0,0 +1,39 @@ + + + \ No newline at end of file diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 28a48c3..fb9a8d7 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -163,6 +163,8 @@ export default { justify-content: center; align-items: center; + margin-bottom: 0; + width: 100%; left: 0; top: 0; -- cgit 1.4.1