Skip to content

Commit

Permalink
feat(ui): let workflow dag and node info scroll independently (#5603)
Browse files Browse the repository at this point in the history
Signed-off-by: Tianchu Zhao <evantczhao@gmail.com>
  • Loading branch information
tczhao authored Apr 6, 2021
1 parent 2651bd6 commit d0a0289
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions ui/src/app/shared/components/graph/graph-panel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
.graph {
overflow: scroll;
text-align: center;
max-height: calc(100vh - 2 * #{$top-bar-height});

.group {
rect {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.workflow-details {

overflow-y: scroll;
overflow-y: hidden;

&, & > .row {
height: calc(100vh - 2 * #{$top-bar-height});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

.workflow-node-info {

max-height: calc(100vh - 2 * #{$top-bar-height});
overflow-y: auto;

.tabs {
a {
padding-right: 0;
Expand Down

0 comments on commit d0a0289

Please sign in to comment.