dev/full-email
Lei OT 2 months ago
parent 83b25ca524
commit 815ba6ac68

@ -171,7 +171,7 @@ const CustomerProfile = () => {
if (currentOrder) {
return (
<div className="divide-x-0 divide-y divide-dashed divide-gray-300">
<div className="divide-x-0 divide-y divide-dashed divide-gray-300 [&_.ant-divider]:my-1">
<Spin spinning={loading}>
<Card
className="p-2 "
@ -287,7 +287,7 @@ const CustomerProfile = () => {
<Divider orientation="left">
<Typography.Text strong>催信:</Typography.Text>
</Divider>
<Checkbox.Group key='substatus' value={[orderRemindState]} options={remindStatusOptions} onChange={handleSetRemindState} />
<Checkbox.Group key='substatus' className="px-2" value={[orderRemindState]} options={remindStatusOptions} onChange={handleSetRemindState} />
<Divider orientation="left">
<Typography.Text strong>最新报价</Typography.Text>
</Divider>
@ -327,7 +327,7 @@ const CustomerProfile = () => {
}
renderItem={(email) => (
<List.Item
className='hover:bg-stone-50 cursor-pointer'
className='hover:bg-stone-50 cursor-pointer [&.ant-list-item]:py-1 [&.ant-list-item]:px-2'
onClick={() => {
handle3rdEmailItemClick(email)
}}>

Loading…
Cancel
Save