diretto/src/App.vue

31 lines
373 B
Vue

<template>
<div id="app">
<nav id="topnav">
<h1>
DIRETTO
</h1>
</nav>
<router-view />
</div>
</template>
<style scoped lang="postcss">
@import "assets/styles/theme";
#app {
display: flex;
}
#topnav {
flex: 1;
display: flex;
flex-direction: row;
background: $ink;
}
h1 {
font-size: 18pt;
font-weight: bolder;
}
</style>