footer at bottom

This commit is contained in:
Tim Zieger 2020-04-21 16:10:53 +02:00
parent a077adb591
commit 4f3f01e686
3 changed files with 23 additions and 18 deletions

View File

@ -1,9 +1,15 @@
<template>
<div id="app">
<div class="app">
<div>
<Header />
</div>
<div class="Site-content">
<router-view />
</div>
<div>
<Footer />
</div>
</div>
</template>
@ -20,9 +26,11 @@ export default {
</script>
<style scoped>
#app {
/* font-family: Avenir, Helvetica, Arial, sans-serif; */
.app {
display: flex;
min-height: 100vh;
flex-direction: column;
font-family: 'Montserrat', sans-serif;
-webkit-font-smoothing: antialiased;
@ -30,17 +38,9 @@ export default {
background-color: #131313;
color: #f1f1f1f1;
}
#nav {
.Site-content {
flex: 1;
}
#nav a {
font-weight: bold;
color: #2c3e50;
}
#nav a.router-link-exact-active {
color: #42b983;
}
</style>

View File

@ -15,5 +15,7 @@ export default {
};
</script>
<style scoped>
.about{
}
</style>

View File

@ -2,6 +2,7 @@
<div class="home">
<h3>Home View</h3>
</div>
</template>
@ -18,5 +19,7 @@ export default {
</script>
<style scoped>
.home {
}
</style>