Skip to content
Snippets Groups Projects
Commit beeb3209 authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

Don't use a single column for data pages

parent 3abcbe5a
No related branches found
No related tags found
No related merge requests found
...@@ -22,17 +22,15 @@ function DataPage({ title, filter, children, category }: inputProps): ReactEleme ...@@ -22,17 +22,15 @@ function DataPage({ title, filter, children, category }: inputProps): ReactEleme
</PageHeader> </PageHeader>
<SectionNavigation activeCategory={category} /> <SectionNavigation activeCategory={category} />
<Container className="grow"> <Container className="grow">
<Col xs={9}> <Row>
<Row> <h3 className="m-4">{title}</h3>
<h3 className="m-4">{title}</h3> </Row>
</Row> <Row>
<Row> {filter}
{filter} </Row>
</Row> <Row>
<Row> {children}
{children} </Row>
</Row>
</Col>
</Container> </Container>
</> </>
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment