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

@@ -1,10 +1,10 @@
import { Link,routes } from '@redwoodjs/router'
import { Link, routes } from '@redwoodjs/router'
import BlogLayout from 'src/layouts/BlogLayout'
const AboutPage = () => {
return (
<BlogLayout>
<p>
<p className="font-light">
This site was created to demonstrate my mastery of Redwood: Look on my
works, ye mighty, and despair!
</p>

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>
)
}