Skip to content

Commit

Permalink
[TM-1557] change style modal approved select all (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
dottyy authored Dec 13, 2024
1 parent 030be0c commit 5f2d873
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/admin/components/extensive/Modal/ModalApprove.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,13 @@ const ModalApprove: FC<ModalApproveProps> = ({
{content}
</Text>
</When>
<Text variant="text-14-bold" className="ml-auto flex items-center justify-end gap-2 pr-[76px]">
Select All
<Checkbox name="Select All" onClick={e => handleSelectAll((e.target as HTMLInputElement).checked)} />
<Text variant="text-14-bold" className="ml-auto flex items-center justify-end gap-2">
<Checkbox
className="flex h-min items-center"
name="Select All"
onClick={e => handleSelectAll((e.target as HTMLInputElement).checked)}
/>
<span className="text-14-bold leading-[normal]">Select All</span>
</Text>
</div>

Expand Down

0 comments on commit 5f2d873

Please sign in to comment.