From 9632ca8bc59c282fcd3a25bf295e7225f908b3d9 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 26 Sep 2018 14:36:03 +0100 Subject: [PATCH] CSS: Fix headline colour in cards Signed-off-by: Michael Tremer --- src/scss/style.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/scss/style.scss b/src/scss/style.scss index 28da0823..ae8f8d07 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -78,6 +78,12 @@ h6 { .card { color: $dark; + + .card-body { + h1, h2, h3, h4, h5, h6 { + color: inherit; + } + } } .nav { @@ -222,7 +228,7 @@ footer { .blog-header { h5 { a { - color: $body-color; + color: $dark; } } } -- 2.47.3