Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/components/hero/HeroDesktop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ const useStyles = makeStyles((theme: Theme) => ({
justifyContent: "space-between",
borderRadius: 8,
padding: 22,
color: "#939598",
},
logoEdition: {
zIndex: 1,
Expand Down Expand Up @@ -256,7 +257,8 @@ const LoggedView = (user: UserProps) => {

const ProgressMessage = (props: any) => (
<div style={{ maxWidth: 400 }}>
<Typography align="left" component="p">
<Typography align="left" component="p" color="textPrimary">
{" "}
Você tem <b> {props.opened} pull requests enviados</b> e{" "}
<b>{props.merged} aceito(s) </b>{" "}
</Typography>
Expand All @@ -265,7 +267,8 @@ const ProgressMessage = (props: any) => (

const ConfirmMessage = () => (
<div style={{ maxWidth: 430 }}>
<Typography align="left" component="p">
<Typography align="left" component="p" color="textPrimary">
{" "}
<b>Parabéns!</b> Você concluiu o desafio Hacktoberfest. Confirme o
endereço de envio no minha área.{" "}
</Typography>
Expand All @@ -274,7 +277,8 @@ const ConfirmMessage = () => (

const CongratsMessage = () => (
<div style={{ maxWidth: 430 }}>
<Typography align="left" component="p">
<Typography align="left" component="p" color="textPrimary">
{" "}
<b>Parabéns!</b> Você concluiu o desafio Hacktoberfest.{" "}
<b>Agora é só esperar sua camiseta chegar</b>{" "}
</Typography>
Expand Down
Loading