1
0
Fork 0
mirror of synced 2024-07-03 21:40:55 +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%;
display: flex;
flex-direction: column;
overflow-x: hidden;
}
.title > div:nth-child(1) {

View file

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

View file

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

View file

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