TSK-1593: Replaced hard-coded height by flex-grow
This commit is contained in:
parent
01f2db14d5
commit
74cd4eacd9
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue