Revision 41cc94d663fd0cb8b42e1bc76b37b4ab0a75ab9e authored by Matti Schneider on 16 May 2020, 10:21:51 UTC, committed by Matti Schneider on 16 May 2020, 10:21:51 UTC
Plutôt que celles qui soulignent des erreurs
1 parent e16d4ef
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