Metamigo frontend updates

This commit is contained in:
Darren Clarke 2023-07-05 09:39:24 +00:00 committed by GitHub
parent 9edbeed056
commit 6e3e178187
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 56 additions and 56 deletions

View file

@ -42,14 +42,19 @@ const CustomUserMenu = (props: any) => (
const CustomAppBar = (props: any) => {
const classes = useStyles();
return (
<AppBar {...props} elevation={1} userMenu={<CustomUserMenu />}>
<AppBar
{...props}
elevation={1}
userMenu={<CustomUserMenu />}
position="sticky"
sx={{ mt: -1 }}
>
<Typography
variant="h6"
color="inherit"
className={classes.title}
id="react-admin-title"
/>
<span className={classes.spacer} />
</AppBar>
);
};