Fixed invalid footer placement on small pages

This commit is contained in:
2025-04-01 20:10:43 +02:00
parent 6cdeacea51
commit 11ece73e50
2 changed files with 13 additions and 2 deletions

View File

@@ -7,12 +7,16 @@ import GOLbackground from '@/components/GOLbackground.vue';
<template>
<GOLbackground />
<RouterView/>
<main>
<RouterView/>
</main>
<app_footer />
</template>
<style scoped>
main{
flex:1;
}
</style>

View File

@@ -27,4 +27,11 @@ a:visited{
border-radius: 6px;
cursor: pointer;
text-align: center;
}
#app{
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}