Use header colour for table headers

This commit is contained in:
David Cook
2023-06-08 15:21:54 +10:00
parent 16534319b6
commit edcdcd3f74
2 changed files with 2 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ $color-error: $color-5 !default;
// Table colors
$color-tbl-cell-bg: $color-1 !default;
$color-tbl-thead-txt: $color-headers !default;
$color-tbl-thead-bg: $color-7 !default;
// Button colors

View File

@@ -131,6 +131,7 @@ table {
padding: 10px;
border-bottom: none;
background-color: $color-tbl-thead-bg;
color: $color-tbl-thead-txt;
font-size: 13px;
font-weight: $font-weight-bold;
}