diretto/src/App.vue

30 lines
344 B
Vue
Raw Normal View History

2019-06-26 20:45:22 +02:00
<template>
<div id="app">
2019-06-26 21:55:59 +02:00
<nav id="topnav">
<h1>
DIRETTO
</h1>
</nav>
2019-06-26 20:45:22 +02:00
<router-view />
</div>
</template>
2019-06-26 21:55:59 +02:00
<style scoped lang="scss">
@import "assets/styles/theme";
#app {
display: flex;
}
#topnav {
flex: 1;
display: flex;
flex-direction: row;
background: $ink;
}
h1 {
font-size: 18pt;
font-weight: bolder;
}
2019-06-26 20:45:22 +02:00
</style>