Define table head color in scss

This commit is contained in:
RealStickman 2022-11-19 17:42:12 +01:00
parent e95b01b031
commit ebc3582688
5 changed files with 13 additions and 4 deletions

View File

@ -956,4 +956,7 @@ body {
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
background: #302136; }
thead {
color: #111111; }
/*# sourceMappingURL=theme.css.map */

File diff suppressed because one or more lines are too long

View File

@ -161,6 +161,6 @@ blockquote {
}
/* table headings */
thead {
/*thead {
color: #111111;
}
}*/

View File

@ -23,3 +23,6 @@
// Nav
@import "theme/nav";
// Tables
@import "theme/tables";

View File

@ -0,0 +1,3 @@
thead {
color: #111111;
}