1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_sticky-table-headers.scss
2022-09-20 13:54:20 +07:00

27 lines
513 B
SCSS

.sticky-table-headers {
/* Demo */
border-collapse: collapse;
width: 100%;
}
.sticky-table-headers tbody {
border-bottom: 1px solid #d1d5db;
}
.sticky-table-headers thead td {
padding: 0.25rem;
}
.sticky-table-headers tr {
border-top: 1px solid #d1d5db;
}
.sticky-table-headers__sticky {
/* Background color */
background-color: #9ca3af;
/* Stick to the left */
left: 0;
position: sticky;
/* Displayed on top of other rows when scrolling */
z-index: 9999;
}