1
0
Fork 0

Add footer,remove text

This commit is contained in:
Le Libre Au Quotidien 2020-05-24 19:37:39 +02:00
parent d2984d0445
commit b164a967fc
1 changed files with 10 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<template>
<div id="app">
<p>g1land</p>
<p>Donner en g1</p>
<router-view></router-view>
<footer> <img width="80px" src="./assets/juneland.svg" alt="logo juneland">Crée et hébergé par <a href="https://lelibreauquotidien.fr">llaq</a> - <a href="https://git.p2p.legal/llaq/g1land">Disponible sous agplV3</a></footer>
</div>
</template>
@ -19,6 +19,11 @@ export default {
</script>
<style>
footer{
flex-grow:1;
position:absolute;
bottom:0;
}
#app {
display:flex;
flex-direction: column;
@ -27,7 +32,8 @@ export default {
display: flex;
flex-direction: row;
}
.part:hover{
background-color:yellow;
footer{
}
</style>