diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-28 22:34:06 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-28 22:34:06 +0200 |
commit | af06d79ac92460ae1a924a7e1d72f5c376c61663 (patch) | |
tree | 6b27f0ca99d682414b0fbbd64c125c01906eaba6 /src/components/Footer.vue | |
parent | 8dfa61884580a5966c0b48f5ce5dc16828f489c4 (diff) | |
download | puszcza-af06d79ac92460ae1a924a7e1d72f5c376c61663.tar.gz puszcza-af06d79ac92460ae1a924a7e1d72f5c376c61663.zip |
Add footer
Diffstat (limited to 'src/components/Footer.vue')
-rw-r--r-- | src/components/Footer.vue | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/components/Footer.vue b/src/components/Footer.vue new file mode 100644 index 0000000..3cf81a5 --- /dev/null +++ b/src/components/Footer.vue @@ -0,0 +1,81 @@ +<template> + <div class="footer"> + <div class="map"> + <div class="routes"> + <router-link v-for="route in routes" :key="route.name" :to="route.path">{{route.name}}</router-link> + </div> + <div class="routes"> + <router-link + v-for="route in specialRoutes" + :key="route.name" + :to="route.path" + >{{route.name}}</router-link> + </div> + </div> + <div class="space"></div> + <div>19 Poznańska Drużyna Harcerzy Puszcza</div> + </div> +</template> + +<script> +export default { + props: { + routes: Array, + specialRoutes: Array + } +}; +</script> + +<style scoped> +.footer { + background-color: #507b34; + color: #ffffff; + height: 175px; + + display: flex; + flex-direction: row; + + align-items: center; + justify-content: center; + + padding: 0 15vw 0 15vw; +} + +.map { + display: flex; + flex-direction: row; + + text-align: left; + + /* margin-right: 100px; */ +} + +.map a { + text-decoration: none; + color: #ffffff; + margin: 5px; +} + +.routes { + display: flex; + flex-direction: column; +} + +.space { + flex: 1; + max-width: 500px; +} + +@media (max-width: 900px) { + .footer { + padding: 20px 10vw 20px 10vw; + flex-direction: column; + + justify-content: center; + } + + .map { + text-align: center; + } +} +</style> \ No newline at end of file |