Fix tags being blue in dark mode

This commit is contained in:
Jake Howard 2022-09-19 16:45:54 +01:00
parent d5aac8ac50
commit 8b87733319
Signed by: jake
GPG Key ID: 57AFB45680EDD477

View File

@ -49,6 +49,11 @@ section.content {
.tags.has-addons {
@include dark-mode {
filter: invert(100%);
a {
// HACK: By inverting the colour, the above invert ends up showing the correct colour
color: color.invert($primary);
}
}
}