Skip to content

Commit

Permalink
Add position:sticky to Experiment table head (#1805)
Browse files Browse the repository at this point in the history
* Add position:sticky to thead

* Add background color to thead
  • Loading branch information
rogermparent authored Jun 2, 2022
1 parent 796180c commit d6ea272
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions webview/src/experiments/components/table/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -523,3 +523,10 @@ $workspace-row-edge-margin: $edge-padding - $cell-padding;
overflow-x: hidden;
text-overflow: ellipsis;
}

.thead {
position: sticky;
top: 0;
z-index: 3;
background-color: $bg-color;
}

0 comments on commit d6ea272

Please sign in to comment.