Skip to content

Commit

Permalink
Add css for table scrolling. Fixes #2027 (#2028)
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb committed Jun 2, 2021
1 parent b38afdd commit d629e16
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
/**
* This file is for any css that you may want for this visualizer.
*
* Ideally, you would use the scss file also provided in this directory
* and then generate this file automatically from that. However, you can
* simply write css if you prefer
* This file is for any scss that you may want for this visualizer.
*/

.execution-index.panel-body {
padding: 0;
}
padding: 0; }

.execution-index .left {
position: absolute;
background-color: #eee;
}
overflow-y: scroll; }

.execution-index .right {
position: absolute;
background-color: #eee;
}
background-color: #eee; }
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
* This file is for any scss that you may want for this visualizer.
*/

.execution-index {
outline: none;
.execution-index.panel-body {
padding: 0;
}

.execution-index .left {
position: absolute;
background-color: #eee;
overflow-y: scroll;
}

.execution-index .right {
position: absolute;
background-color: #eee;
}

0 comments on commit d629e16

Please sign in to comment.