1
0
Fork 0
infojune/src/App.vue

59 lines
1.0 KiB
Vue
Executable File

<template>
<div id="app">
<header>
<p>Le site Infojune est encore en beta, mais il s'améliorera avec le temps </p>
<a href="/#/cf"> PARTICIPEZ AU CROWDFOUNDING DU SITE INFOJUNE.FR</a>
</header>
<router-view></router-view>
<footer> <img width="80px" src="./assets/juneland.svg" alt="infojune">Crée et hébergé par <a href="https://lelibreauquotidien.fr">llaq</a> - <a href="https://git.p2p.legal/llaq/infojune">Disponible sous CC-BY-NC-SA</a></footer>
</div>
</template>
<script>
export default {
name: 'app',
components: {
},
data: function(){
return{
}
}
}
</script>
<style>
footer{
position: absolute;
bottom: 0;
}
header{
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
}
#app {
display:flex;
flex-direction: column;
min-height: 100%;
}
.col{
display: flex;
flex-direction: row;
}
@media only screen and (max-width: 460px) {
footer{
display: flex;
flex-direction: row;
align-items:center;
justify-content: center;
flex-wrap: wrap;
}
}
</style>