mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-12 03:36:39 +00:00
[UI] updated Progress INfoBar on projectpage
This commit is contained in:
parent
3bf705f036
commit
2b449e651c
1 changed files with 10 additions and 4 deletions
|
|
@ -16,7 +16,8 @@ interface IProps {
|
||||||
|
|
||||||
const useStyles = makeStyles((theme: Theme) => ({
|
const useStyles = makeStyles((theme: Theme) => ({
|
||||||
root: {
|
root: {
|
||||||
margin: theme.spacing(1),
|
marginTop: theme.spacing(4),
|
||||||
|
marginBottom: theme.spacing(4),
|
||||||
flexGrow: 1,
|
flexGrow: 1,
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
@ -54,10 +55,15 @@ export const ProjectPage: FC<IProps> = ({ viewModel }) => {
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Grid container>
|
<Grid container>
|
||||||
<Grid item xs={3}>
|
<Grid
|
||||||
|
container
|
||||||
|
direction="row"
|
||||||
|
justify="flex-start"
|
||||||
|
alignItems="center"
|
||||||
|
>
|
||||||
<AvatarList users={users} />
|
<AvatarList users={users} />
|
||||||
</Grid>
|
{/* </Grid>
|
||||||
<Grid item xs={9}>
|
<Grid item xs={9}> */}
|
||||||
<FloatingButton
|
<FloatingButton
|
||||||
icon="add"
|
icon="add"
|
||||||
color="default"
|
color="default"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue