From 982a6e90d4b0cfa84eb3b747ecd677175bbe98c3 Mon Sep 17 00:00:00 2001 From: Ahmad Abdolsaheb Date: Thu, 7 Oct 2021 15:33:39 +0300 Subject: [PATCH] feat: add placeholder color to card form (#43757) --- client/src/components/Donation/stripe-card-form.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/components/Donation/stripe-card-form.tsx b/client/src/components/Donation/stripe-card-form.tsx index a7da3f3f49..fea859ff15 100644 --- a/client/src/components/Donation/stripe-card-form.tsx +++ b/client/src/components/Donation/stripe-card-form.tsx @@ -83,7 +83,10 @@ const StripeCardForm = ({ style: { base: { fontSize: '18px', - color: `${theme === 'night' ? '#fff' : '#0a0a23'}` + color: `${theme === 'night' ? '#fff' : '#0a0a23'}`, + '::placeholder': { + color: `#858591` + } } } };