height stuff for ios

This commit is contained in:
2020-09-28 16:17:53 +02:00
parent 4c58bfc4cc
commit 27e2e41c44
4 changed files with 12 additions and 5 deletions

View File

@@ -1,13 +1,21 @@
<script>
import { onMount } from 'svelte'
import Nav from '../components/Nav.svelte'
export let segment
let wrapper
onMount(() => {
wrapper.style.height = `${window.innerHeight}px`
})
</script>
<style>
div {
display: flex;
flex-direction: row;
height: 100vh;
}
main {
@@ -18,7 +26,7 @@
flex: 1 0 auto;
overflow: auto;
max-width: calc(100% - 4em);
max-height: 100vh;
height: 100%;
}
@media (max-width: 30em) {
@@ -28,7 +36,7 @@
}
</style>
<div>
<div bind:this={wrapper}>
<Nav {segment} />
<main>
<slot />