diff options
author | 2021-10-20 18:24:48 -0400 | |
---|---|---|
committer | 2021-10-20 17:24:48 -0500 | |
commit | 93f0f1b7568204204b6fedfce1b806a844808841 (patch) | |
tree | c1b94f72e24e66a56aac645854297722c790b0f9 /docs/src/components | |
parent | 08524613bb72cae3dede8c67c9ee63971914fb76 (diff) | |
download | astro-93f0f1b7568204204b6fedfce1b806a844808841.tar.gz astro-93f0f1b7568204204b6fedfce1b806a844808841.tar.zst astro-93f0f1b7568204204b6fedfce1b806a844808841.zip |
Fix sponsors title contrast (#1590)
Diffstat (limited to 'docs/src/components')
-rw-r--r-- | docs/src/components/LeftSidebar/LeftSidebar.astro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/src/components/LeftSidebar/LeftSidebar.astro b/docs/src/components/LeftSidebar/LeftSidebar.astro index 4c7d52a97..bfbaa0724 100644 --- a/docs/src/components/LeftSidebar/LeftSidebar.astro +++ b/docs/src/components/LeftSidebar/LeftSidebar.astro @@ -141,9 +141,11 @@ const sidebarSections = SIDEBAR[langCode].reduce((col, item) => { .sponsor-logo__vercel { width: 90px; } - + :global(:root.theme-dark .sponsors-title) { + color: hsl(var(--color-base-gray), 75%); + } .sponsors-title { - color: hsl(var(--color-base-gray), 50%); + color: hsl(var(--color-base-gray), 25%); font-size: 0.8em; font-weight: 300; letter-spacing: 0.0625em; |