Skip to content

Commit

Permalink
refactor(v2): make margin top on blog pages as on docs pages
Browse files Browse the repository at this point in the history
  • Loading branch information
lex111 committed Apr 13, 2020
1 parent 1c2e8f9 commit 512f8e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function BlogListPage(props) {

return (
<Layout title={title} description="Blog">
<div className="container margin-vert--xl">
<div className="container margin-vert--lg">
<div className="row">
<div className="col col--8 col--offset-2">
{items.map(({content: BlogPostContent}) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function BlogPostPage(props) {
return (
<Layout title={title} description={description}>
{BlogPostContents && (
<div className="container margin-vert--xl">
<div className="container margin-vert--lg">
<div className="row">
<div className="col col--8 col--offset-2">
<BlogPostItem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function BlogTagsListPage(props) {

return (
<Layout title="Tags" description="Blog Tags">
<div className="container margin-vert--xl">
<div className="container margin-vert--lg">
<div className="row">
<div className="col col--8 col--offset-2">
<h1>Tags</h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function BlogTagsPostPage(props) {
<Layout
title={`Posts tagged "${tagName}"`}
description={`Blog | Tagged "${tagName}"`}>
<div className="container margin-vert--xl">
<div className="container margin-vert--lg">
<div className="row">
<div className="col col--8 col--offset-2">
<h1>
Expand Down

0 comments on commit 512f8e0

Please sign in to comment.