Skip to content
Snippets Groups Projects
Unverified Commit f9738149 authored by Tom Herbers's avatar Tom Herbers Committed by GitHub
Browse files

Merge pull request #163 from kpanic23/patch-1

Update app.css: Make table header sticky
parents ce80879e caee4af9
Branches
Tags
No related merge requests found
......@@ -64,6 +64,13 @@ h1, h2, h3, h4, h5, h6 {
border-collapse: collapse;
}
.table > thead {
position: sticky;
top: 0;
z-index: 1;
background: #fff;
}
.table-striped > tbody > tr:nth-of-type(2n+1) {
background-color: #f9f9f9;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment