view client/src/views/Main.vue @ 515:ef7f56d326ae

fix: gemma configuration added to .hgignore In order to prevent accidentally committing gemma.toml it was added to .hgignore
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 27 Aug 2018 11:56:43 +0200
parents 9c1dfadb53aa
children 6a29ad5a36cf
line wrap: on
line source

<template>
  <div class="main d-flex">
    <Sidebar v-bind:isOverlay="true"></Sidebar>
    <Map></Map>
  </div>
</template>

<style lang="scss">
.main {
  height: 100vh;
}

#map {
  background-color: #ffffff;
  width: 100%;
}
</style>

<script>
import Map from "../components/Map";
import Sidebar from "../components/Sidebar";
export default {
  name: "mainview",
  components: {
    Map,
    Sidebar
  }
};
</script>