diretto/src/App.vue

31 lines
373 B
Vue
Raw Normal View History

2019-06-26 20:45:22 +02:00
<template>
<div id="app">
<nav id="topnav">
<h1>
DIRETTO
</h1>
</nav>
<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 {
display: flex;
2019-06-26 21:55:59 +02:00
}
2019-06-26 21:55:59 +02:00
#topnav {
flex: 1;
display: flex;
flex-direction: row;
background: $ink;
2019-06-26 21:55:59 +02:00
}
h1 {
font-size: 18pt;
font-weight: bolder;
2019-06-26 21:55:59 +02:00
}
2019-06-26 20:45:22 +02:00
</style>