feat: add placeholder color to card form (#43757)

This commit is contained in:
Ahmad Abdolsaheb
2021-10-07 15:33:39 +03:00
committed by GitHub
parent be73864bd5
commit 982a6e90d4

View File

@ -83,7 +83,10 @@ const StripeCardForm = ({
style: {
base: {
fontSize: '18px',
color: `${theme === 'night' ? '#fff' : '#0a0a23'}`
color: `${theme === 'night' ? '#fff' : '#0a0a23'}`,
'::placeholder': {
color: `#858591`
}
}
}
};