1
0
Fork 0
mirror of synced 2024-06-18 18:35:37 +12:00

bugfix: right nav scrolling

This commit is contained in:
Michael Shanks 2020-06-01 22:04:32 +01:00
parent bda4937c45
commit d4b2fb5736
5 changed files with 12 additions and 2 deletions

View file

@ -51,7 +51,7 @@
"safe-buffer": "^5.1.2",
"shortid": "^2.2.8",
"string_decoder": "^1.2.0",
"svelte-simple-modal": "^0.3.0",
"svelte-simple-modal": "^0.4.2",
"uikit": "^3.1.7"
},
"devDependencies": {

View file

@ -105,7 +105,9 @@
display: flex;
flex-direction: column;
overflow-x: hidden;
overflow-y: hidden;
padding: 20px;
box-sizing: border-box;
}
.title > div:nth-child(1) {
@ -120,5 +122,7 @@
.component-props-container {
margin-top: 20px;
flex: 1 1 auto;
min-height: 0;
overflow-y: auto;
}
</style>

View file

@ -88,6 +88,8 @@ html, body {
#app {
height: 100%;
box-sizing: border-box;
overflow-y: hidden;
}
h1 {

View file

@ -81,7 +81,7 @@
<style>
.root {
height: 100%;
min-height: 100%;
width: 100%;
display: flex;
flex-direction: column;

View file

@ -76,6 +76,9 @@
grid-template-columns: 300px 1fr 300px;
width: 100%;
background: var(--grey-light);
flex: 1;
min-height: 0;
align-items: stretch;
}
.ui-nav {
@ -98,6 +101,7 @@
.components-pane {
grid-column: 3;
background-color: var(--white);
min-height: 0;
}
.nav-group-header > div:nth-child(1) {