view client/src/views/Main.vue @ 30:7ba0a77fd679

ol component added
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 25 Jun 2018 18:05:50 +0200
parents 88d0d60924cf
children 0c19dcc352f9
line wrap: on
line source

<template>
  <div class="main d-flex">
    <div class="sidebar">Sidebar!</div>
    <Map></Map>
  </div>
</template>

<style lang="scss">
@import "../assets/application.scss";
.main {
  height: 100vh;
}
.sidebar {
  padding-top: $large-offset;
  width: $sidebar-full-width;
}
#map {
  background-color: #ffffff;
  width: 100%;
}
</style>

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