view client/src/App.vue @ 161:b7ac2e4f9c5c

feat: collapsible sidebar According to UI prototypes collabsible sidebar implemented.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 05 Jul 2018 16:52:39 +0200
parents 7ba0a77fd679
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>