Skip to content

Commit

Permalink
ajustes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsvinicius committed Nov 14, 2020
1 parent 6b83786 commit 3e86824
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion web/src/pages/Hospital/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Hospital: React.FC = () => {
</div>

<div className="btn">
<Button to="/" text="Avançar" iconURL={nextIcon} iconALT={"Próximo"} />
<Button to="/" text="Avançar" iconURL={nextIcon} iconALT="Próximo" />
</div>
</Form>
</div>
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/Landing/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const HeroImage = styled.div`
position: absolute;
bottom: 0;
right: 0;
height: 900px;
margin-right: -3.8em;
width: 55%;
}
`;
10 changes: 5 additions & 5 deletions web/src/pages/UberCare/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ const UberCare: React.FC = () => {
<p>Cadastre-se agora</p>

<div className="inputs">
<Input placeholder="E-mail" type="email" required={true} autoComplete={"none"} />
<Input placeholder="E-mail" type="email" required={true} autoComplete="none" />
<span className="divisor"></span>
<Input placeholder="Nome completo" type="text" required={true} autoComplete={"none"} />
<Input placeholder="Telefone" type="text" required={true} autoComplete={"none"} />
<Input placeholder="Nome completo" type="text" required={true} autoComplete="none" />
<Input placeholder="Telefone" type="text" required={true} autoComplete="none" />
<Input placeholder="Criar Senha" type="password" required={true} min={6} />
<span className="divisor"></span>
<Input placeholder="Cidade" type="text" required={true} autoComplete={"none"} />
<Input placeholder="Cidade" type="text" required={true} autoComplete="none" />
</div>

<div className="btn">
<Button to="/" text="Avançar" iconURL={nextIcon} iconALT={"Próximo"} />
<Button to="/" text="Avançar" iconURL={nextIcon} iconALT="Próximo" />
</div>
</Form>
</div>
Expand Down

0 comments on commit 3e86824

Please sign in to comment.