1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +12:00

backend - child panes scrollable

This commit is contained in:
Michael Shanks 2020-02-24 21:31:35 +00:00
parent dafef90c3d
commit 43522aad22
2 changed files with 6 additions and 1 deletions

View file

@ -15,7 +15,7 @@
<div class="nav">
<BackendNav />
</div>
<div class="content" style="width: calc(100% - {navWidth}); left: {navWidth}">
<div class="content">
{#if $store.activeNav === 'database'}
<Database />
{:else if $store.activeNav === 'actions'}
@ -37,9 +37,12 @@
height: 100%;
background-color: var(--white);
margin: 0;
overflow-y: auto;
overflow-x: hidden;
}
.nav {
overflow: auto;
flex: 0 1 auto;
width: 300px;
height: 100%;

View file

@ -60,12 +60,14 @@
display: flex;
align-items: center;
border-bottom: 1px solid #ddd;
box-sizing: border-box;
}
.content {
flex: 1 1 auto;
width: 100%;
height: 100px;
overflow: hidden;
}
.content > div {