1
0
Fork 0
mirror of synced 2024-07-11 01:06:04 +12:00

Properties panel scrolling fix

This commit is contained in:
Conor_Mack 2020-06-01 17:14:54 +01:00
parent 787caa95e5
commit e6915b655f
4 changed files with 7 additions and 3 deletions

View file

@ -104,7 +104,6 @@
height: 100%; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow-x: hidden;
} }
.title > div:nth-child(1) { .title > div:nth-child(1) {

View file

@ -54,7 +54,7 @@
height: 100%; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 20px 20px; padding: 20px 5px 20px 10px;
border-left: solid 1px var(--grey); border-left: solid 1px var(--grey);
} }

View file

@ -64,6 +64,9 @@
.design-view-property-groups { .design-view-property-groups {
flex: 1; flex: 1;
overflow-y: auto;
overflow-x: hidden;
max-height: 500px;
} }
.no-design { .no-design {

View file

@ -143,7 +143,7 @@
.ui-nav { .ui-nav {
grid-column: 1; grid-column: 1;
background-color: var(--white); background-color: var(--white);
height: calc(100vh - 49px); height: calc(100vh - 69px);
padding: 0; padding: 0;
overflow: scroll; overflow: scroll;
display: flex; display: flex;
@ -161,6 +161,8 @@
grid-column: 3; grid-column: 3;
background-color: var(--white); background-color: var(--white);
min-height: 0px; min-height: 0px;
height: calc(100vh - 69px);
overflow-y: hidden;
} }
.components-nav-page { .components-nav-page {