Skip to content

Commit

Permalink
page help change h2 -> h3 and change position telefone
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnypaulino committed Jun 24, 2024
1 parent eb42e53 commit c0bb772
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/Components/Card/CardHelp/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CardHelp = ({
className="card"
onClick={() => window.open(link)}
>
<h2>{title}</h2>
<h3>{title}</h3>
<p>{description}</p>
</div>
);
Expand Down
38 changes: 19 additions & 19 deletions src/Pages/Beneficiaries/BeneficiariesCreate/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,25 @@ const RegistrationPage = () => {
) : null}
</div>
</div>
<div className="grid">
<div className="col-12 md:col-6">
<label>Telefone para contato *</label>
<Padding />
<MaskInput
value={values.responsable_telephone}
mask="(99) 9 9999-9999"
name="responsable_telephone"
onChange={handleChange}
placeholder="name"
/>
{errors.responsable_telephone &&
touched.responsable_telephone ? (
<div style={{ color: "red", marginTop: "8px" }}>
{errors.responsable_telephone}
</div>
) : null}
</div>
</div>{" "}
<Padding padding="8px" />
<h3>Dados Responsavel</h3>
<Padding />
Expand Down Expand Up @@ -272,25 +291,6 @@ const RegistrationPage = () => {
) : null}
</div>
</div>{" "}
<div className="grid">
<div className="col-12 md:col-6">
<label>Telefone *</label>
<Padding />
<MaskInput
value={values.responsable_telephone}
mask="(99) 9 9999-9999"
name="responsable_telephone"
onChange={handleChange}
placeholder="name"
/>
{errors.responsable_telephone &&
touched.responsable_telephone ? (
<div style={{ color: "red", marginTop: "8px" }}>
{errors.responsable_telephone}
</div>
) : null}
</div>
</div>{" "}
<Padding padding="8px" />
<h3>Matricula *</h3>
<Padding padding="8px" />
Expand Down

0 comments on commit c0bb772

Please sign in to comment.