2019-07-19 16:07:26 +02:00
|
|
|
<template>
|
|
|
|
<div id="app">
|
|
|
|
<router-view/>
|
2019-07-20 22:50:29 +02:00
|
|
|
<Footer />
|
2019-07-19 16:07:26 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
2019-07-20 22:50:29 +02:00
|
|
|
<script>
|
|
|
|
|
2019-09-01 14:38:13 +02:00
|
|
|
import Footer from '@/components/Footer.vue';
|
2019-07-20 22:50:29 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'app',
|
|
|
|
components: {
|
2019-09-01 14:38:13 +02:00
|
|
|
Footer,
|
|
|
|
},
|
|
|
|
};
|
2019-07-20 22:50:29 +02:00
|
|
|
</script>
|
2019-07-19 16:07:26 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
2021-02-28 22:55:18 +01:00
|
|
|
@import '../src/styles/global-styles.scss';
|
|
|
|
@import '../src/styles/color-pallet.scss';
|
2019-07-20 22:50:29 +02:00
|
|
|
|
2021-03-01 19:44:57 +01:00
|
|
|
body {
|
|
|
|
background: $background;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2019-07-19 16:07:26 +02:00
|
|
|
#app {
|
2019-07-20 22:50:29 +02:00
|
|
|
.footer {
|
|
|
|
text-align: center;
|
2019-07-19 16:07:26 +02:00
|
|
|
}
|
|
|
|
}
|
2019-07-20 22:50:29 +02:00
|
|
|
|
2019-07-19 16:07:26 +02:00
|
|
|
</style>
|