Skip to content

Commit

Permalink
feat: met 1957 pool details view
Browse files Browse the repository at this point in the history
  • Loading branch information
DinhTran committed Apr 8, 2024
1 parent 77cdf45 commit bcefbac
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/GovernanceVotes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ const GovernanceVotesDetail: React.FC<{

<DataContainer sx={{ boxShadow: "unset" }}>
<StyledGrid container>
<Item item xs={6} md={3} top={1}>
<Item item xs={6} md={3} top={1} pr={"5px !important"}>
<Box display="flex" justifyContent="space-between" pr={"5px"}>
<CustomIcon fill={theme.palette.secondary.light} icon={GovernanceIdIcon} height={22} marginTop="15px" />
<BlackWarningIcon />
Expand Down Expand Up @@ -420,7 +420,7 @@ const GovernanceVotesDetail: React.FC<{
</Box>
</InfoValue>
</Item>
<Item item xs={6} md={3} top={1}>
<Item item xs={6} md={3} top={1} pr={"5px !important"}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon fill={theme.palette.secondary.light} icon={ActionTypeIcon} height={22.27} marginTop="15px" />
<BlackWarningIcon />
Expand All @@ -430,7 +430,7 @@ const GovernanceVotesDetail: React.FC<{
</InfoTitle>
<InfoValue>{actionTypeListDrep.find((action) => action.value === data?.govActionType)?.text}</InfoValue>
</Item>
<Item item xs={6} md={3} top={1} sx={{ position: "relative" }}>
<Item item xs={6} md={3} top={1} sx={{ position: "relative", pr: "5px !important" }}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon fill={theme.palette.secondary.light} icon={VoteIcon} height={27} marginTop="15px" />
<BlackWarningIcon />
Expand Down Expand Up @@ -517,7 +517,7 @@ const GovernanceVotesDetail: React.FC<{
)}
</InfoValue>
</Item>
<Item item xs={6} md={3} top={1} sx={{ position: "relative" }} width={"100%"}>
<Item item xs={6} md={3} top={1} sx={{ position: "relative", pr: "5px !important" }} width={"100%"}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon fill={theme.palette.secondary.light} icon={CurrentStatusIcon} height={28} marginTop="15px" />
<BlackWarningIcon />
Expand All @@ -532,7 +532,7 @@ const GovernanceVotesDetail: React.FC<{
</Box>
</InfoTitle>
</Item>
<Item item xs={6} md={3}>
<Item item xs={6} md={3} pr={"5px !important"}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon
fill={theme.palette.secondary.light}
Expand All @@ -550,7 +550,7 @@ const GovernanceVotesDetail: React.FC<{
{data?.votingPower ? `${data?.votingPower} ADA` : "N/A"}{" "}
</InfoValue>
</Item>
<Item item xs={6} md={3}>
<Item item xs={6} md={3} pr={"5px !important"}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon fill={theme.palette.secondary.light} height={27} icon={SubmissionDateIcon} />
<BlackWarningIcon />
Expand All @@ -560,7 +560,7 @@ const GovernanceVotesDetail: React.FC<{
</InfoTitle>
<InfoValue>{formatDateTime(data?.submissionDate || "")}</InfoValue>
</Item>
<Item item xs={6} md={3}>
<Item item xs={6} md={3} pr={"5px !important"}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon fill={theme.palette.secondary.light} height={27} icon={SubmissionDateIcon} />
<BlackWarningIcon />
Expand All @@ -570,7 +570,7 @@ const GovernanceVotesDetail: React.FC<{
</InfoTitle>
<InfoValue>{formatDateTime(data?.expiryDate || "")}</InfoValue>
</Item>
<Item item xs={6} md={3}>
<Item item xs={6} md={3} pr={"5px !important"}>
<Box display="flex" justifyContent="space-between" pr="5px">
<CustomIcon fill={theme.palette.secondary.light} height={25} icon={AnchorTextIcon} />
<BlackWarningIcon />
Expand Down

0 comments on commit bcefbac

Please sign in to comment.