TSK-1593: Replaced hard-coded height by flex-grow

This commit is contained in:
Sofie Hofmann 2021-04-14 09:31:03 +02:00
parent 01f2db14d5
commit 74cd4eacd9
2 changed files with 5 additions and 2 deletions

View File

@ -10,9 +10,8 @@
} }
&__task-details { &__task-details {
display: flex;
flex-grow: 1; flex-grow: 1;
min-width: calc(920px - 500px);
height: calc(100vh - 56px);
} }
&__empty-page { &__empty-page {

View File

@ -1,5 +1,9 @@
@import 'src/theme/_colors.scss'; @import 'src/theme/_colors.scss';
:host {
flex-grow: 1;
}
.task-processing { .task-processing {
height: 100%; height: 100%;
display: flex; display: flex;