From 4c2bac02f91d01e71b19009f44ef55c373bd7e83 Mon Sep 17 00:00:00 2001 From: Naman Sood Date: Wed, 11 May 2022 01:08:55 -0400 Subject: [PATCH] use consistent color for contact section 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 56c9b82..36a8093 100644 --- a/css/style.css +++ b/css/style.css @@ -42,6 +42,9 @@ body.dark-mode .works-card .text-container a { background: rgba(255, 255, 255, 0.1) !important; box-shadow: none !important; } +body.dark-mode #contact { + color: #ddd !important; +} body.dark-mode footer { color: #ddd !important; } diff --git a/css/style.scss b/css/style.scss index a155be7..2c2879a 100644 --- a/css/style.scss +++ b/css/style.scss @@ -54,6 +54,10 @@ body.dark-mode { } } + #contact { + color: #ddd !important; + } + footer { color: #ddd !important; }