platypush-app/webapp/src/App.vue

37 lines
532 B
Vue

<template>
<Hosts />
</template>
<script>
import Hosts from "@/components/Hosts";
export default {
name: 'App',
components: {
Hosts,
}
}
</script>
<style lang="scss">
@import "style/common";
html, body {
width: 100%;
height: 100%;
margin: 0;
}
#app {
width: 100%;
height: 100%;
background: $body-bg;
display: flex;
justify-content: center;
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
</style>