[design] fix main min height
This commit is contained in:
parent
f60c23dd9c
commit
f2d72cb724
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="d-flex flex-column vh-100 body">
|
<div class="body">
|
||||||
<div class="flex-grow-1">
|
<div class="flex-grow-1 vh">
|
||||||
<Header/>
|
<Header/>
|
||||||
<main class="container">
|
<main class="container">
|
||||||
<Nuxt/>
|
<Nuxt/>
|
||||||
|
@ -67,4 +67,8 @@
|
||||||
top: $header-height - 1px;
|
top: $header-height - 1px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vh {
|
||||||
|
min-height: calc(100vh - #{$header-height});
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Reference in New Issue