Skip to content

Commit

Permalink
fix: styles button container
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 4, 2022
1 parent 348d115 commit 4baa820
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/pages/Profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,11 @@ export function Profile() {
)}
</div>

<Button type="submit">
{loading ? <SpinnerCircular color="#28262e" size={32} /> : 'Confirmar mudanças'}
</Button>
<div className={styles.buttonContainer}>
<Button type="submit">
{loading ? <SpinnerCircular color="#28262e" size={32} /> : 'Confirmar mudanças'}
</Button>
</div>
</form>
</div>
</div>
Expand Down

0 comments on commit 4baa820

Please sign in to comment.