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
</PageHeader>
<SectionNavigation activeCategory={category} />
<Container className="grow">
<Col xs={9}>
<Row>
<h3 className="m-4">{title}</h3>
</Row>
<Row>
{filter}
</Row>
<Row>
{children}
</Row>
</Col>
<Row>
<h3 className="m-4">{title}</h3>
</Row>
<Row>
{filter}
</Row>
<Row>
{children}
</Row>
</Container>
</>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment