From 515b7eb3bff1c89dbd119c51824d6ae94ad5a2d7 Mon Sep 17 00:00:00 2001 From: JY Hsu Date: Thu, 24 Oct 2024 23:54:40 +0800 Subject: [PATCH] Fix input focus and placeholder color for footer section (#1005) Co-authored-by: Emruz Hossain --- 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 423de07..6ddbf39 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'); } }