diff --git a/src/screens/Register/View.js b/src/screens/Register/View.js index f6b9b25..79b524f 100644 --- a/src/screens/Register/View.js +++ b/src/screens/Register/View.js @@ -1,4 +1,3 @@ -import { Fragment } from 'react'; import { Box, Button, @@ -37,7 +36,13 @@ function View({ const currentYear = dayjs().year(); return ( - +

Criar conta

@@ -188,7 +193,7 @@ function View({ severity="error" message={error && error.message} /> -
+ ); } diff --git a/src/screens/Register/styles.js b/src/screens/Register/styles.js index a09cf88..3117046 100644 --- a/src/screens/Register/styles.js +++ b/src/screens/Register/styles.js @@ -1,25 +1,24 @@ // ========== Desktop ========== const desktopPaper = { - width: '1500px', - height: '70%', + height: 'fit-content', display: 'flex', justifyContent: 'center', color: 'white', textAlign: 'center', }; - const baseBox = { width: '100%', height: '100%', display: 'flex', justifyContent: 'center', flexDirection: 'column', - padding: '0 70px', + padding: '30px 70px', }; const desktopBoxLogo = { ...baseBox, backgroundColor: 'secondary.main', + height: 'auto', }; const desktopBoxForm = {