Skip to content

Commit ccf9635

Browse files
authored
Merge pull request #171 from mekanix/generator
Fix initial height
2 parents f62b5ec + 7545e4f commit ccf9635

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/freenit.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,16 +418,18 @@ EOF
418418
<MenuItems {toggle} {logout} {store} />
419419
</LeftPane>
420420
421-
<MenuBar {toggle} title="${NAME}" />
422421
<section class="root">
422+
<MenuBar {toggle} title="${NAME}" />
423423
<div class="main">
424424
{@render children?.()}
425425
</div>
426426
</section>
427427
428428
<style>
429429
.root {
430-
height: 100vh;
430+
height: 100dvh;
431+
display: flex;
432+
flex-direction: column;
431433
}
432434
433435
.main {

0 commit comments

Comments
 (0)