footer at bottom
This commit is contained in:
parent
a077adb591
commit
4f3f01e686
@ -1,9 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div class="app">
|
||||||
|
<div>
|
||||||
<Header />
|
<Header />
|
||||||
|
</div>
|
||||||
|
<div class="Site-content">
|
||||||
<router-view />
|
<router-view />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
<Footer />
|
<Footer />
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
||||||
@ -20,9 +26,11 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
#app {
|
|
||||||
/* font-family: Avenir, Helvetica, Arial, sans-serif; */
|
|
||||||
|
|
||||||
|
.app {
|
||||||
|
display: flex;
|
||||||
|
min-height: 100vh;
|
||||||
|
flex-direction: column;
|
||||||
font-family: 'Montserrat', sans-serif;
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
@ -30,17 +38,9 @@ export default {
|
|||||||
background-color: #131313;
|
background-color: #131313;
|
||||||
color: #f1f1f1f1;
|
color: #f1f1f1f1;
|
||||||
}
|
}
|
||||||
|
.Site-content {
|
||||||
#nav {
|
flex: 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#nav a {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2c3e50;
|
|
||||||
}
|
|
||||||
|
|
||||||
#nav a.router-link-exact-active {
|
|
||||||
color: #42b983;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -15,5 +15,7 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.about{
|
||||||
|
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<div class="home">
|
<div class="home">
|
||||||
|
|
||||||
<h3>Home View</h3>
|
<h3>Home View</h3>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -18,5 +19,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.home {
|
||||||
|
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user