From f601d48f4e42c699440a988451e3f06b88e57eaf Mon Sep 17 00:00:00 2001 From: Naman Sood Date: Mon, 12 Dec 2022 16:31:35 -0500 Subject: [PATCH] fix among in dark mode Signed-off-by: Naman Sood --- css/style.css | 3 +++ css/style.scss | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/css/style.css b/css/style.css index 73226e1..f51b486 100644 --- a/css/style.css +++ b/css/style.css @@ -34,6 +34,9 @@ body.dark-mode .main h3 a { body.dark-mode .main h3 a:before, body.dark-mode .main h3 a:after { background: rgba(255, 255, 255, 0.2); } +body.dark-mode .main h3 a.among { + color: inherit; +} body.dark-mode .main a.contact-method p { color: #fff; font-size: 1rem; diff --git a/css/style.scss b/css/style.scss index dd8ecd9..5a13aee 100644 --- a/css/style.scss +++ b/css/style.scss @@ -39,6 +39,10 @@ body.dark-mode { &:before, &:after { background: rgba(#fff, 0.2); } + + &.among { + color: inherit; + } } a.contact-method p {