Make teal links appear only when the darker background is activated

This way links in producers, about, etc, where the background is white will still appear as orange, as per design
This commit is contained in:
Luis Ramos
2020-05-01 18:40:53 +01:00
parent 782988b61c
commit f3347a8e16

View File

@@ -85,7 +85,11 @@
background-color: transparent;
a {
color: $teal-500;
color: $orange-500;
&:hover {
color: $orange-600;
}
}
img {
@@ -120,6 +124,10 @@
&.with-darker-background {
background-color: $very-light-grey-transparency;
a {
color: $teal-500;
}
}
}
}