diff options
author | 2021-07-23 16:40:47 -0500 | |
---|---|---|
committer | 2021-07-23 23:40:47 +0200 | |
commit | 96f70c3f9977def0c69c1bd3d56a920004aa3e5a (patch) | |
tree | ff0229b03814086baf230f140aa8bc93ca8b403a /docs | |
parent | ef9fb1de964230bc02eb8d990070e7a2b1bd9f30 (diff) | |
download | astro-96f70c3f9977def0c69c1bd3d56a920004aa3e5a.tar.gz astro-96f70c3f9977def0c69c1bd3d56a920004aa3e5a.tar.zst astro-96f70c3f9977def0c69c1bd3d56a920004aa3e5a.zip |
fix table header color (#839)
Co-authored-by: Austin Crim <crim.austin@principal.com>
Diffstat (limited to '')
-rw-r--r-- | docs/public/index.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/public/index.css b/docs/public/index.css index 8b81cf391..34acc7803 100644 --- a/docs/public/index.css +++ b/docs/public/index.css @@ -223,7 +223,7 @@ tr:nth-of-type(odd) { } th { background: var(--color-black); - color: white; + color: var(--theme-color); font-weight: bold; } td, |