diff --git a/frontend/scenes/Document/Document.js b/frontend/scenes/Document/Document.js index fa28558a3..c82315c5b 100644 --- a/frontend/scenes/Document/Document.js +++ b/frontend/scenes/Document/Document.js @@ -171,13 +171,12 @@ type Props = { } {!isFetching && this.document && - - } + } ); } @@ -263,4 +262,9 @@ const DocumentContainer = styled.div` width: 50em; `; +const StyledDropToImport = styled(DropToImport)` + display: flex; + flex: 1; +`; + export default withRouter(inject('ui', 'user', 'documents')(DocumentScene));