Fix component top margins

This commit is contained in:
Rob Cameron
2020-10-19 16:35:19 -07:00
parent ce17804e51
commit 6c8aa09860
7 changed files with 29 additions and 18 deletions

View File

@@ -4,9 +4,7 @@ import BlogPostCell from 'src/components/BlogPostCell'
const BlogPostPage = ({ id }) => {
return (
<BlogLayout>
<div className="-mt-12">
<BlogPostCell id={id} />
</div>
<BlogPostCell id={id} />
</BlogLayout>
)
}