-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed link color in contactDialog component
- Loading branch information
1 parent
60649da
commit 9cf59b7
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
{t( "ContactDialog_text3")} <Link underline="hover" color="inherit" href="https://github.com/fuzue/seasonalfood"> {t("ContactDialog_text4")}</Link> | ||
{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> | ||
|