Skip to content

Commit

Permalink
Correção no Tema Dark (botão fechar Contato)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Aug 15, 2022
1 parent 73108b1 commit 5ac28d0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/ContactDrawer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ const ContactDrawer = ({ open, handleDrawerClose, contact, loading }) => {
}}
>
<div className={classes.header}>
<IconButton onClick={handleDrawerClose}>
<IconButton
color="primary"
onClick={handleDrawerClose}>
<CloseIcon />
</IconButton>
<Typography style={{ justifySelf: "center" }}>
Expand All @@ -128,7 +130,7 @@ const ContactDrawer = ({ open, handleDrawerClose, contact, loading }) => {
{contact.email && (
<Typography>
<Link href={`mailto:${contact.email}`}>{contact.email}</Link>
</Typography>
</Typography>
)}
<Button
variant="outlined"
Expand Down

0 comments on commit 5ac28d0

Please sign in to comment.