File size: 367 Bytes
a3624d5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="scrollableTable jp-RenderedHTMLCommon">
  {{ table }}
</div>
<style>
.scrollableTable {
  overflow-y: auto;
  max-height: {{ max_height }};
}
.scrollableTable table {
  width: 100%;
}
.scrollableTable table :is(th,td) {
  text-align: left !important;
}
.scrollableTable th {
  background: var(--jp-layout-color1);
  position: sticky;
  top: 0;
}
</style>