use consistent color for contact section in dark mode

Signed-off-by: Naman Sood <mail@nsood.in>
This commit is contained in:
Naman Sood 2022-05-11 01:08:55 -04:00
parent 350809a716
commit 4c2bac02f9
2 changed files with 7 additions and 0 deletions

View file

@ -42,6 +42,9 @@ body.dark-mode .works-card .text-container a {
background: rgba(255, 255, 255, 0.1) !important; background: rgba(255, 255, 255, 0.1) !important;
box-shadow: none !important; box-shadow: none !important;
} }
body.dark-mode #contact {
color: #ddd !important;
}
body.dark-mode footer { body.dark-mode footer {
color: #ddd !important; color: #ddd !important;
} }

View file

@ -54,6 +54,10 @@ body.dark-mode {
} }
} }
#contact {
color: #ddd !important;
}
footer { footer {
color: #ddd !important; color: #ddd !important;
} }