ubiquitous-computing-geo-ti.../frontend/src/App.vue

47 lines
686 B
Vue
Raw Normal View History

2020-04-05 22:15:03 +02:00
<template>
2020-04-21 16:10:53 +02:00
<div class="app">
<div>
<Header />
</div>
<div class="Site-content">
<router-view />
</div>
<div>
<Footer />
</div>
2020-04-05 22:15:03 +02:00
</div>
</template>
2020-04-17 10:15:09 +02:00
<script>
2020-04-19 11:35:25 +02:00
import Footer from './components/layout/Footer';
import Header from './components/layout/Header';
2020-04-17 10:15:09 +02:00
export default {
name:"app",
components: {
2020-04-19 11:35:25 +02:00
Footer,
Header
2020-04-17 10:15:09 +02:00
}
}
</script>
2020-04-19 11:35:25 +02:00
<style scoped>
2020-04-21 14:41:48 +02:00
2020-04-21 16:10:53 +02:00
.app {
display: flex;
min-height: 100vh;
flex-direction: column;
2020-04-21 14:41:48 +02:00
font-family: 'Montserrat', sans-serif;
2020-04-05 22:15:03 +02:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
2020-04-21 14:41:48 +02:00
background-color: #131313;
color: #f1f1f1f1;
2020-04-15 18:38:30 +02:00
}
2020-04-21 16:10:53 +02:00
.Site-content {
flex: 1;
2020-04-15 18:38:30 +02:00
}
2020-04-05 22:15:03 +02:00
</style>