Skip to content

Commit

Permalink
Merge pull request #512 from sonaliTekdi/UI_changes
Browse files Browse the repository at this point in the history
Bug #224623 - Calendar Icon and Voting Icon Not Properly Aligned on Poll Details Page
  • Loading branch information
ManojNathIC authored Aug 21, 2024
2 parents f3cd69d + 962a9f6 commit 0039bf2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/nulp_elite/src/pages/voting/votingDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,15 +337,15 @@ const VotingDetails = () => {
)}
<TodayOutlinedIcon
className="h3-custom-title pl-10 pt-10"
style={{ verticalAlign: "middle" }}
style={{ verticalAlign: 'sub',marginRight: '10px'}}
/>
<span className="h3-custom-title ">
{moment(poll.end_date).format(
"dddd, MMMM Do YYYY, h:mm:ss a"
)}
</span>
</Box>
{userVote && userVote?.length > 0 && (
{userVote && userVote?.length > 0 && (
<Box className="pr-5 my-20">
<span className=" h3-custom-title"> Your Vote</span>
<VerifiedIcon
Expand All @@ -358,10 +358,11 @@ const VotingDetails = () => {
}}
/>
<span className="h3-custom-title ">
{userVote[0]?.poll_result}
{userVote[0]?.poll_result}

</span>
</Box>
)}
)}
<Box sx={{ width: "100%" }}>
{pollResult && (
<div>
Expand Down

0 comments on commit 0039bf2

Please sign in to comment.