[AAE-4637] Fix varying height of dialog when clicking on the Upload from your device tab (#6690)

This commit is contained in:
Thomas Hunter
2021-02-19 11:53:39 +01:00
committed by GitHub
parent 4a381b46a5
commit e96617a676

View File

@@ -10,12 +10,27 @@
} }
} }
.mat-tab-body-wrapper {
flex-grow: 1;
}
.mat-tab-body-content {
display: flex;
flex-direction: column;
}
adf-upload-drag-area {
flex-grow: 1;
}
.adf-upload-dialog { .adf-upload-dialog {
&__content { &__content {
max-height: 64%; max-height: unset;
} }
display: flex;
flex-direction: column;
height: 100%; height: 100%;
width: 100%; width: 100%;
position: unset; position: unset;
@@ -23,12 +38,15 @@
} }
.adf-upload-dialog-container { .adf-upload-dialog-container {
height: 456px; flex-grow: 1;
height: 100%;
} }
} }
.adf-content-node-selector-dialog { .adf-content-node-selector-dialog {
&-content { &-content {
height: 465px;
max-height: 80vh;
padding-left: 24px; padding-left: 24px;
padding-right: 24px; padding-right: 24px;
} }