diff options
| author | Zephyrrus <[email protected]> | 2020-06-29 22:18:18 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-06-29 22:18:18 +0300 |
| commit | c8ad345d1287d9078075cb92956ac9bbd554f022 (patch) | |
| tree | 519f3f47bc0cad12e5b5bb47cb11c00d3dda55cb | |
| parent | feat: add darker image for album section (diff) | |
| download | host.fuwn.me-c8ad345d1287d9078075cb92956ac9bbd554f022.tar.xz host.fuwn.me-c8ad345d1287d9078075cb92956ac9bbd554f022.zip | |
fix: heigh issues where the parent is smaller than the child
| -rw-r--r-- | src/site/layouts/default.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/site/layouts/default.vue b/src/site/layouts/default.vue index 744285c..61a257e 100644 --- a/src/site/layouts/default.vue +++ b/src/site/layouts/default.vue @@ -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; |