Skip to content

Commit

Permalink
Fix metrics explorer modal scroll
Browse files Browse the repository at this point in the history
bootstrap-dark breaks scrolling on the metrics modal, so we need an extra rule to fix that.

Signed-off-by: Łukasz Mierzwa <l.mierzwa@gmail.com>
  • Loading branch information
prymitive committed Apr 13, 2021
1 parent 0f7d558 commit 3214e0f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions web/ui/react-app/src/themes/_shared.scss
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,9 @@ button.execute-btn {
border-bottom: 1px solid $nav-tabs-border-color;
padding: 10px;
}

/* bootstrap-dark seems to break overflow on modals, making them unscrollable
this fixes it by allowing overflow and enabling scrolling */
.modal.show {
overflow-y: auto;
}

0 comments on commit 3214e0f

Please sign in to comment.