1
0
Fork 0

Edit header,footer

This commit is contained in:
Le Libre Au Quotidien 2020-05-30 11:50:27 +02:00
parent c8249c54c9
commit 74934c299b
1 changed files with 19 additions and 3 deletions

View File

@ -24,19 +24,35 @@ export default {
<style> <style>
footer{ footer{
flex-grow:1; position: absolute;
bottom: 0;
}
header{
display: flex;
flex-direction: column;
align-items:center;
justify-content: center;
} }
#app { #app {
display:flex; display:flex;
flex-direction: column; flex-direction: column;
min-height: 100vh; min-height: 100%;
} }
.col{ .col{
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }
@media only screen and (max-width: 460px) {
footer{ footer{
display: flex;
flex-direction: row;
align-items:center;
justify-content: center;
flex-wrap: wrap;
}
} }
</style> </style>