Skip to content

Commit

Permalink
fix: use box over container (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettdorrans authored Jun 14, 2020
1 parent daea9ac commit 062f196
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { Container, Link, Logo } from '@lapidist/components';
import { Box, Link, Logo } from '@lapidist/components';
import IndexLayout from '../layouts';
import LinkWrapper from '../components/LinkWrapper';
import PageTitle from '../components/PageTitle';
Expand All @@ -17,7 +17,7 @@ const IndexPage = (): JSX.Element => (
Brett Dorrans
</PageTitle>
</header>
<Container
<Box
styles={{
width: 'full',
breakpoints: {
Expand All @@ -41,7 +41,7 @@ const IndexPage = (): JSX.Element => (
</Link>
<Link href="mailto:hello@lapidist.net">Email</Link>
</LinkWrapper>
</Container>
</Box>
</IndexLayout>
);

Expand Down

0 comments on commit 062f196

Please sign in to comment.