update text color on nav to be less glaring

This commit is contained in:
emma 2022-12-08 19:18:13 +00:00
commit 5ad0da1766
2 changed files with 6 additions and 3 deletions

View file

@ -155,8 +155,7 @@
line-height: 3.5em;
padding: 0 1em;
width: 100%;
color: $fallback--link;
color: var(--link, $fallback--link);
color: $fallback--text;
&:hover {
background-color: $fallback--lightBg;

View file

@ -366,13 +366,17 @@
padding: 0;
a,
button {
button,
.button-unstyled.-link {
box-sizing: border-box;
display: block;
height: 3em;
line-height: 3em;
padding: 0 0.7em;
color: $fallback--text;
color: var(--menuPopoverText, $fallback--text);
&:hover {
background-color: $fallback--lightBg;
background-color: var(--selectedMenuPopover, $fallback--lightBg);