Skip to content

Commit 7ee507a

Browse files
committed
fixed footer height
Signed-off-by: Piotr Karpala <[email protected]>
1 parent 3249e6d commit 7ee507a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/App.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<v-main>
44
<MainComponent />
55
</v-main>
6-
<v-footer class="bg-indigo-lighten-1 text-center d-flex flex-column">
6+
<v-footer class="bg-indigo-lighten-1 text-center d-flex flex-column fixed-footer">
77
<div class="px-4 py-2 text-center w-100">
88
{{ new Date().getFullYear() }} — <strong>Copilot Metrics Viewer</strong> — {{ version }}
99
</div>
@@ -29,3 +29,10 @@ export default defineComponent({
2929
},
3030
})
3131
</script>
32+
33+
<style scoped>
34+
.fixed-footer {
35+
height: 50px;
36+
max-height: 50px;
37+
}
38+
</style>

0 commit comments

Comments
 (0)