view client/src/App.vue @ 206:cd6ad5eaef8d

Renamed cmd/tokenserver to cmd/gemma.
author Sascha L. Teichmann <teichmann@intevation.de>
date Sun, 22 Jul 2018 10:40:17 +0200
parents b7ac2e4f9c5c
children 924490b3395b
line wrap: on
line source

<template>
  <div id="app">
    <router-view/>
  </div>
</template>

<style lang="scss">
html {
  height: 100%;
}
body {
  min-height: 100%;
  background-color: #efefef !important;
}

#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;
    }
  }
}
</style>