Skip to content

Commit

Permalink
fix: remove horizontal overflow from main page
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-aksamentov committed Feb 12, 2021
1 parent 36fa501 commit d1061f5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { delay } from 'lodash'
import { connect } from 'react-redux'
import { push } from 'connected-next-router'
import { useTranslation } from 'react-i18next'
import { Button, Col, Row } from 'reactstrap'
import { Button, Col, Container, Row } from 'reactstrap'
import { AlgorithmInputString } from 'src/io/AlgorithmInput'
import styled from 'styled-components'

Expand Down Expand Up @@ -91,7 +91,7 @@ export function MainSectionHeroControlsDisconnected({
}

return (
<div>
<Container fluid>
<Row>
<Col>
<FilePickerSimple
Expand All @@ -117,6 +117,6 @@ export function MainSectionHeroControlsDisconnected({
</Button>
</Col>
</Row>
</div>
</Container>
)
}

0 comments on commit d1061f5

Please sign in to comment.