update auth style

This commit is contained in:
Sidney Alcantara
2021-09-08 15:17:40 +10:00
parent 5f43e2a593
commit 812a48e4c5
2 changed files with 6 additions and 14 deletions

View File

@@ -97,15 +97,7 @@ export default function AuthLayout({ children, loading }: IAuthLayoutProps) {
}
>
<Logo />
<Typography
variant="body2"
sx={{
display: "block",
mt: 1,
color: "text.disabled",
}}
>
<Typography variant="body2" color="text.disabled" display="block">
Project: {process.env.REACT_APP_FIREBASE_PROJECT_ID}
</Typography>
{children}

View File

@@ -57,7 +57,7 @@ const useStyles = makeStyles((theme) =>
},
"& .mdl-button": {
borderRadius: 24,
borderRadius: (theme.shape.borderRadius as number) * (48 / 32),
...theme.typography.button,
},
"& .mdl-button--raised": { boxShadow: "none" },
@@ -108,7 +108,7 @@ const useStyles = makeStyles((theme) =>
zIndex: 0,
backgroundColor: "#fff",
borderRadius: "50%",
borderRadius: theme.shape.borderRadius,
},
"& .firebaseui-idp-icon-wrapper img": {
position: "relative",
@@ -162,8 +162,8 @@ const useStyles = makeStyles((theme) =>
[theme.breakpoints.down("sm")]: { display: "block" },
textAlign: "center",
color: theme.palette.text.disabled,
marginBottom: theme.spacing(-1),
color: theme.palette.text.primary,
margin: theme.spacing(3, 0, -3),
},
skeleton: {
@@ -172,7 +172,7 @@ const useStyles = makeStyles((theme) =>
"& > *": {
width: "100%",
height: 48,
borderRadius: 24,
borderRadius: (theme.shape.borderRadius as number) * (48 / 32),
},
"& > * + *": {