Skip to content

Commit

Permalink
Improve mid breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlanjc committed Dec 17, 2019
1 parent 7a11856 commit b773ce8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/search.js
Expand Up @@ -29,7 +29,7 @@ const Error = ({ error = '' }) => (

const disclaimer = (
<Text
sx={{ color: 'muted', fontSize: 0, mt: [-2, -3, -28], textAlign: 'left' }}
sx={{ color: 'muted', fontSize: 0, mt: [-2, -28], textAlign: 'left' }}
>
Never stored, saved, or sold.
</Text>
Expand Down
2 changes: 1 addition & 1 deletion pages/index.js
Expand Up @@ -21,7 +21,7 @@ const Page = ({ profiles }) => (
<Heading as="h2" variant="headline" sx={{ mt: 4 }}>
Explore
</Heading>
<Grid gap={3} columns={[2, 6]} sx={{ textAlign: 'left' }}>
<Grid gap={3} columns={[2, null, 6]} sx={{ textAlign: 'left' }}>
<Link href="/states" passHref>
<Card
variant="nav"
Expand Down
2 changes: 1 addition & 1 deletion pages/profiles/[id].js
Expand Up @@ -149,7 +149,7 @@ const Page = ({ profile }) => {
<Header title={name} />
<Container sx={{ py: [3, 4] }}>
<Profile data={profile} full />
<Grid gap={4} columns={[null, 2]} as="section" sx={{ my: 4 }}>
<Grid gap={4} columns={[null, null, 2]} as="section" sx={{ my: 4 }}>
<div>
<Heading
as="h2"
Expand Down

0 comments on commit b773ce8

Please sign in to comment.