Skip to content

Commit

Permalink
Move passwords fields to the right
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinesalib committed Apr 6, 2020
1 parent 5a19e08 commit 569a61a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
14 changes: 9 additions & 5 deletions app/javascript/containers/UserSettings/UserSettings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@ const UserSettings = () => {
</div>

<div className={classes.formInputs}>
<TextInputWithLabel className={classes.textInput} label="Nome Completo" />
<TextInputWithLabel className={classes.textInput} label="Email" />
<TextInputWithLabel className={classes.textInput} label="Telefone" />
<TextInputWithLabel className={classes.textInput} label="Senha" />
<TextInputWithLabel className={classes.textInput} label="Confirmação de senha" />
<div>
<TextInputWithLabel className={classes.textInput} label="Nome Completo" />
<TextInputWithLabel className={classes.textInput} label="Email" />
<TextInputWithLabel className={classes.textInput} label="Telefone" />
</div>
<div>
<TextInputWithLabel className={classes.textInput} label="Senha" />
<TextInputWithLabel className={classes.textInput} label="Confirmação de senha" />
</div>
</div>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion app/javascript/containers/UserSettings/UserSettings.sass
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@

.formInputs
margin-top: 40px
margin-left: 50px
display: flex
justify-content: space-evenly

.textInput
margin-bottom: 20px

0 comments on commit 569a61a

Please sign in to comment.