update pay function

This commit is contained in:
2025-11-22 11:41:56 +08:00
parent a4b634abff
commit d8e4c737c5
397 changed files with 19572 additions and 9326 deletions

View File

@@ -0,0 +1,55 @@
import { mode } from '@chakra-ui/theme-tools';
export const textareaStyles = {
components: {
Textarea: {
baseStyle: {
field: {
fontWeight: 400,
borderRadius: '8px',
},
},
variants: {
main: (props: any) => ({
field: {
bg: mode('transparent', 'navy.800')(props),
border: '1px solid !important',
color: mode('#120F43', 'white')(props),
borderColor: mode('gray.200', 'whiteAlpha.100')(props),
borderRadius: '16px',
fontSize: 'sm',
p: '20px',
_placeholder: { color: '#120F43' },
},
}),
auth: () => ({
field: {
bg: 'white',
border: '1px solid',
borderColor: 'gray.200',
borderRadius: '16px',
_placeholder: { color: 'gray.500' },
},
}),
authSecondary: () => ({
field: {
bg: 'white',
border: '1px solid',
borderColor: 'gray.200',
borderRadius: '16px',
_placeholder: { color: '#120F43' },
},
}),
search: () => ({
field: {
border: 'none',
py: '11px',
borderRadius: 'inherit',
_placeholder: { color: '#120F43' },
},
}),
},
},
},
};