Right, that's the first quater done

This commit is contained in:
Alicia Sykes
2019-07-20 21:50:29 +01:00
parent cbd0d714be
commit b7b8addd83
9 changed files with 210 additions and 51 deletions

View File

@@ -5,25 +5,29 @@
<router-link to="/about">About</router-link>
</div>
<router-view/>
<Footer />
</div>
</template>
<script>
<style lang="scss">
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
a {
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active {
color: #42b983;
}
import Footer from '@/components/Footer.vue'
export default {
name: 'app',
components: {
Footer
}
}
</script>
<style lang="scss">
@import url('../src/global-styles.scss');
#app {
margin: 1em;
.footer {
text-align: center;
}
}
</style>