Added a div to wrapp buttons in FileSharing
parent
9e14cfd924
commit
5b8f2d83a9
|
|
@ -25,6 +25,10 @@ const styles = (theme) =>
|
||||||
button :
|
button :
|
||||||
{
|
{
|
||||||
margin : theme.spacing(1)
|
margin : theme.spacing(1)
|
||||||
|
},
|
||||||
|
shareButtonsWrapper :
|
||||||
|
{
|
||||||
|
display : 'flex'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -72,6 +76,7 @@ const FileSharing = (props) =>
|
||||||
return (
|
return (
|
||||||
<Paper className={classes.root}>
|
<Paper className={classes.root}>
|
||||||
<FileSharingModerator />
|
<FileSharingModerator />
|
||||||
|
<div className={classes.shareButtonsWrapper} >
|
||||||
<input
|
<input
|
||||||
className={classes.input}
|
className={classes.input}
|
||||||
type='file'
|
type='file'
|
||||||
|
|
@ -111,6 +116,7 @@ const FileSharing = (props) =>
|
||||||
</Button>
|
</Button>
|
||||||
</label>
|
</label>
|
||||||
}
|
}
|
||||||
|
</div>
|
||||||
<FileList />
|
<FileList />
|
||||||
</Paper>
|
</Paper>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue