Skip to content

Instantly share code, notes, and snippets.

@PierreLebedel
Created January 26, 2024 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PierreLebedel/87aa571ce5282453ff5f94691672a990 to your computer and use it in GitHub Desktop.
Save PierreLebedel/87aa571ce5282453ff5f94691672a990 to your computer and use it in GitHub Desktop.
Tabler.io styles for table tbody
@import "../../node_modules/@tabler/core/src/scss/tabler.scss";
.table {
tfoot {
th {
color: $table-th-color;
background: $table-th-bg;
font-weight: var(--#{$prefix}font-weight-bold);
text-transform: uppercase;
letter-spacing: .04em;
color: var(--#{$prefix}secondary);
padding:$table-cell-padding-x $table-cell-padding-y;
white-space: nowrap;
@media print {
background: transparent;
}
}
}
}
.table-transparent {
tfoot {
th {
background: transparent;
}
}
}
.table-borderless {
tfoot th {
background: transparent;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment