view client/src/views/Main.vue @ 551:89bc8111563a

refac: Layout adjustments
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 31 Aug 2018 14:12:00 +0200
parents 505656a9947f
children
line wrap: on
line source

<template>
    <div class="main d-flex flex-column">
        <Maplayer :lat="6155376" :long="1819178" :zoom="11"></Maplayer>
    </div>
</template>

<style lang="scss">
@import "../assets/application.scss";

.menubutton {
  margin-left: $small-offset;
}
</style>

<script>
import Maplayer from "../components/Maplayer";

export default {
  name: "mainview",
  components: {
    Maplayer
  }
};
</script>