summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWynn Wolf Arbor2020-06-12 16:05:00 +0200
committerWynn Wolf Arbor2020-06-13 16:40:51 +0200
commit37a2d299df9a05cd8437a2b040f484334321d832 (patch)
tree775ba79b3d3f54173c28ea76d1115995cbb28e7e
parent9fc2be020299b32246d491572c9ee248ecaf85b4 (diff)
downloadsite-37a2d299df9a05cd8437a2b040f484334321d832.tar.gz
css: Set the blockquote foreground colour explicitly
This element's foreground colour is inherited from the root element. Since we use a special background colour here, make sure to explicitly set the foreground colour in conjunction.
-rw-r--r--scss/style.scss1
1 files changed, 1 insertions, 0 deletions
diff --git a/scss/style.scss b/scss/style.scss
index a190987..2d6c6ce 100644
--- a/scss/style.scss
+++ b/scss/style.scss
@@ -90,6 +90,7 @@ pre.indent {
blockquote {
background-color: var(--bg-color-canary);
+ color: var(--fg-color-canary);
padding: .7rem;
}