mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-28 16:06:41 +01:00
update auth style
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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),
|
||||
},
|
||||
|
||||
"& > * + *": {
|
||||
|
||||
Reference in New Issue
Block a user