Skip to content

Commit

Permalink
feat: align share icon in bio modal
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Sep 24, 2024
1 parent 0c407c7 commit fea84da
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions ui/summit-2024/src/pages/Categories/components/BioModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,19 @@ const BioModal: React.FC<BioModalProps> = ({
}}
onClick={() => window.open(nominee.linkedin, "_blank")}
>
<img src={LinkedinIcon} alt="X Icon" />
<img src={LinkedinIcon} alt="LinkedIn Icon" />
</Box>
) : null}
</Box>
<Box
component="div"
sx={{
width: "53px",

borderRadius: "12px",
cursor: "pointer",
}}
onClick={() => handleCopyToClipBoard()}
>
<IconButton>
<IconButton
sx={{
padding: "16px",
border: `1px solid ${theme.palette.text.neutralLightest}`,
borderRadius: "12px",
cursor: "pointer",
marginRight: "12px",
}}
onClick={() => handleCopyToClipBoard()}
>
<ShareOutlinedIcon
sx={{
width: "32px",
Expand All @@ -112,6 +110,7 @@ const BioModal: React.FC<BioModalProps> = ({
colorVariant="secondary"
sx={{
width: "100%",
mt: "12px",
}}
onClick={() => window.open(nominee.url, "_blank")}
>
Expand Down

0 comments on commit fea84da

Please sign in to comment.