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> <template>
<GOLbackground /> <GOLbackground />
<main>
<RouterView/> <RouterView/>
</main>
<app_footer /> <app_footer />
</template> </template>
<style scoped> <style scoped>
main{
flex:1;
}
</style> </style>

View File

@@ -28,3 +28,10 @@ a:visited{
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
} }
#app{
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}