Skip to content
Snippets Groups Projects
Commit c34a4c13 authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

make second row in header follow when scrolling

parent d6cfb450
No related branches found
No related tags found
No related merge requests found
......@@ -317,13 +317,20 @@ $service-check-colors: (
word-wrap: break-word;
}
.charging-struct-table thead th {
.charging-struct-table thead tr:first-child th {
position: sticky;
top: -1px; // to hide the pills scrolling by the top of the header
background-color: white;
z-index: 1;
}
.charging-struct-table thead tr:not(:first-child) th {
position: sticky;
top: 50px;
background-color: white;
z-index: 1;
}
@mixin line-before {
content: '';
position: absolute;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment