19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
export const cardStyles = {
|
|
base: {
|
|
color: '#121620',
|
|
lineHeight: '18px',
|
|
fontSize: '16px',
|
|
fontWeight: '400',
|
|
fontFamily: 'SF Pro Text, system-ui, sans-serif',
|
|
'::placeholder': {
|
|
color: '#8E8E93',
|
|
}
|
|
},
|
|
invalid: {
|
|
color: '#FF5758',
|
|
},
|
|
empty: {
|
|
fontWeight: '400',
|
|
},
|
|
}
|