fix: heigh issues where the parent is smaller than the child

This commit is contained in:
Zephyrrus 2020-06-29 22:18:18 +03:00
parent 20a782fefe
commit c8ad345d12
1 changed files with 5 additions and 2 deletions

View File

@ -13,7 +13,7 @@
import Navbar from '~/components/navbar/Navbar.vue';
import Footer from '~/components/footer/Footer';
export default {
components: {
components: {
Navbar,
Footer
},
@ -48,7 +48,10 @@ export default {
</script>
<style lang="scss">
html { overflow: hidden !important; }
.is-fullheight { height: 100vh !important; }
.is-fullheight {
min-height: 100vh !important;
height: max-content;
}
.nuxt-app > .section {
min-height: auto !important;
height: auto !important;