[design] fix main min height

This commit is contained in:
Andrea Vos 2021-12-17 17:38:19 +01:00
parent d5d5386fc1
commit 659bd3e3a1

View File

@ -1,6 +1,6 @@
<template>
<div class="d-flex flex-column vh-100 body">
<div class="flex-grow-1">
<div class="body">
<div class="flex-grow-1 vh">
<Header/>
<main class="container">
<Nuxt/>
@ -67,4 +67,8 @@
top: $header-height - 1px;
}
}
.vh {
min-height: calc(100vh - #{$header-height});
}
</style>