Skip to content

Commit

Permalink
Merge pull request #2080 from MahtabBukhari/queued_icons_should_be_ac…
Browse files Browse the repository at this point in the history
…cording_to_figma

Source Queued tick and cross icons are not according to figma
  • Loading branch information
Rassl authored Sep 12, 2024
2 parents 1dd6411 + ae1fab9 commit 38117b5
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ const Table: React.FC<Props> = ({ data }) => {
)}
</StyledTableCell>
<StyledTableCell className="cell-center">
<Flex direction="row" justify="space-between">
<div className="approve-wrapper">
<Flex direction="row" justify="flex-end">
<CheckCircleWrapper className="approve-wrapper">
<IconWrapper className="centered" onClick={() => handleApprove(i.ref_id)}>
<MdCheckCircle color={colors.primaryGreen} fontSize={24} />
</IconWrapper>
</div>
</CheckCircleWrapper>
<div className="delete-wrapper">
{loadingId === i.ref_id ? (
<ClipLoader color={colors.white} size={16} />
Expand Down Expand Up @@ -144,3 +144,8 @@ const StyledLink = styled.a`
cursor: pointer;
}
`


const CheckCircleWrapper = styled.div`
margin-right: 40px;
`

0 comments on commit 38117b5

Please sign in to comment.