Apply theme color to sidebar widget links (#2538)

* Apply theme color to sidebar widget links

This commit updates the sidebar widget links to apply the appropriate
theme color. This will prevent the links from being hard to read due to
a low contrast in night theme.

* Leave fallback for browsers that dont support css variables
This commit is contained in:
Kobe Raypole 2019-04-24 15:59:38 -04:00 committed by Ben Halpern
parent 8f00c4b883
commit 7d33645d6d

View file

@ -24,6 +24,7 @@
padding: 5px 0px;
font-size: 18px;
color: $black;
color: var(--theme-color, $black);
&:hover {
text-decoration: underline;
}