Revision f215ed49a00cbabdd52ad2b0f3b77f6c51eb57a5 authored by Thomas Guillet on 16 October 2020, 10:44:17 UTC, committed by GitHub on 16 October 2020, 10:44:17 UTC
2 parent s 0d81c4d + ffbfc5a
Raw File
App.vue
<template>
  <BaseLayout id="app">
    <router-view/>
  </BaseLayout>
</template>

<script>
  
import BaseLayout from '@/components/BaseLayout.vue'

export default {
  name: 'app',
  components: {
    BaseLayout,
  }
}
</script>

<style lang="scss">

#app {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#nav {
  padding: 30px;
  a {
    font-weight: bold;
    color: #2c3e50;
    &.router-link-exact-active {
      color: #42b983;
    }
  }
}

a {
  color: black;
  text-decoration: none;
}

body, h1, h2, h3 {
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}

h1, h2, h3, {
  font-weight: 300;
}
</style>
back to top