Add negative margin around single blog post

This commit is contained in:
Rob Cameron
2020-12-08 13:44:56 -08:00
parent cddbb2cce2
commit 62a171d407

View File

@@ -18,5 +18,9 @@ export const Empty = () => <div>Empty</div>
export const Failure = ({ error }) => <div>Error: {error.message}</div> export const Failure = ({ error }) => <div>Error: {error.message}</div>
export const Success = ({ post }) => { export const Success = ({ post }) => {
return <BlogPost post={post} /> return (
<div className="-mt-10">
<BlogPost post={post} />
</div>
)
} }