diretto/src/App.vue

42 lines
636 B
Vue
Raw Normal View History

2019-06-26 20:45:22 +02:00
<template>
<div id="app">
2019-07-16 16:04:43 +02:00
<div id="navwrap">
<nav id="topnav">
<h1>
DIRETTO
</h1>
</nav>
</div>
<router-view />
</div>
2019-06-26 20:45:22 +02:00
</template>
<style scoped lang="postcss">
2019-06-26 21:55:59 +02:00
@import "assets/styles/theme";
#app {
2019-07-16 16:04:43 +02:00
@apply flex;
}
#navwrap {
@apply flex flex-1 flex-row px-2 justify-center;
background: var(--ink);
2019-06-26 21:55:59 +02:00
}
2019-06-26 21:55:59 +02:00
#topnav {
2019-07-16 16:04:43 +02:00
@apply flex flex-auto flex-row w-full;
max-width: var(--maxwidth);
2019-06-26 21:55:59 +02:00
}
h1 {
2019-07-16 16:04:43 +02:00
@apply text-2xl font-bold;
2019-06-26 21:55:59 +02:00
}
2019-06-26 20:45:22 +02:00
</style>
2019-07-16 16:04:43 +02:00
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
@Component({})
export default class App extends Vue {}
</script>