Skip to content

Commit

Permalink
fixed link color in contactDialog component
Browse files Browse the repository at this point in the history
  • Loading branch information
elenavolpato committed Sep 5, 2023
1 parent 60649da commit 9cf59b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ContactDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ export default function ContactDialog() {
<DialogContentText id="contact-dialog-description" color="dark-gray" >
{t("ContactDialog_text1")}
<Link underline="hover" color="inherit" href="https://seasonalfood.fuzue.tech/" target="_blank"> {t("ContactDialog_text2")}</Link>
&nbsp;{t( "ContactDialog_text3")} <Link underline="hover" color="inherit" href="https://github.com/fuzue/seasonalfood"> {t("ContactDialog_text4")}</Link>
&nbsp;{t( "ContactDialog_text3")} <Link underline="hover" sx={{fontWeight: 800}} href="https://github.com/fuzue/seasonalfood"> {t("ContactDialog_text4")}</Link>
<Box sx={{display: 'flex', justifyContent: 'start', mt:2, }}>
<AlternateEmailIcon sx={{mr:1}} />
<Link underline="hover" color="inherit" href="mailto:[email protected]">[email protected]</Link>
<Link underline="hover" sx={{fontWeight: 800}} href="mailto:[email protected]">[email protected]</Link>
</Box>
<Box sx={{display: 'flex', justifyContent: 'start', mt:1}}>
<GitHubIcon sx={{mr:1}}/>
<Link underline="hover" color="inherit" href="https://github.com/fuzue/seasonalfood">GitHub Repo</Link>
<Link underline="hover" sx={{fontWeight: 800}} href="https://github.com/fuzue/seasonalfood">GitHub Repo</Link>
</Box>
</DialogContentText>
</DialogContent>
Expand Down

0 comments on commit 9cf59b7

Please sign in to comment.