From 33c6d8ffc55750eb9eedf6862247a2970cae1deb Mon Sep 17 00:00:00 2001 From: JY Hsu Date: Tue, 22 Oct 2024 00:07:21 +0800 Subject: [PATCH] fix: Fix input focus and placeholder color for footer section --- assets/styles/sections/footer.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/assets/styles/sections/footer.scss b/assets/styles/sections/footer.scss index 423de073a..6ddbf3946 100644 --- a/assets/styles/sections/footer.scss +++ b/assets/styles/sections/footer.scss @@ -97,6 +97,10 @@ html[data-theme='dark'] { background-color: get-dark-color('bg-primary'); &:focus { background-color: get-dark-color('bg-secondary'); + color: get-dark-color('text-color'); + } + &::placeholder { + color: get-dark-color('muted-text-color'); } }