Fix author profile location is dark color in dark mode (#874)

This commit is contained in:
snake
2022-07-19 16:52:59 +09:00
committed by GitHub
parent a15e9bda40
commit db37f3caa8
4 changed files with 12 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1857,6 +1857,10 @@ html.dark-mode .post-card-excerpt {
color: var(--color-secondary-text);
}
html.dark-mode .author-profile-location {
color: #fff;
}
html.dark-mode .article-title {
color: #fff;
}
@ -2028,7 +2032,11 @@ html.dark-mode .footer-cta-title {
html.auto-color .post-card-excerpt {
color: var(--color-secondary-text);
}
html.auto-color .author-profile-location {
color: #fff;
}
html.auto-color .article-title {
color: #fff;
}