Skip to content

Commit

Permalink
fix(log-viewer): fix incorrect height display of logger (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshOY authored Jan 18, 2021
1 parent b5e253a commit 916b580
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
position: relative;
background: @white;
width: 100%;
height: calc(100% - 10px);
height: 100%;
min-height: 600px;

:global(.ant-spin-container) {
height: calc(100% - 30px);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
margin: 0;
}

.LeftPanel, .RightPanel {
.LeftPanel,
.RightPanel {
&&& {
min-height: 600px;
height: calc(100vh - 194px);
height: calc(100vh - 176px);
}
}

Expand Down Expand Up @@ -64,4 +65,3 @@
position: relative;
.max-size();
}

0 comments on commit 916b580

Please sign in to comment.