We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2264377 commit eb90c72Copy full SHA for eb90c72
reactjsfoundations.com/public/index.html
@@ -79,6 +79,7 @@
79
}
80
.container {
81
display: flex;
82
+ justify-content: space-between;
83
84
#column2 {
85
order: 2;
@@ -89,6 +90,7 @@
89
90
width: 20%;
91
text-align: center;
92
margin-top: 20px;
93
+ padding: 10px;
94
95
ul {
96
margin-top: 0px;
reactjsfoundations.com/src/WpBlog.js
@@ -55,7 +55,7 @@ function ReactBlog(props) {
55
56
return (
57
<div className={styles.blog__posts}>
58
- <h1 className={styles.blog__title}>{props.title}</h1>
+ <h2 className={styles.blog__title}>{props.title}</h2>
59
<div style={{ textAlign: 'center' }}>
60
{page > 1 && <button onClick={handlePrevPage}>Newer posts</button>}{' '}
61
{page + 1 <= totalPages && (
0 commit comments