Skip to content

Commit eb90c72

Browse files
committed
css tweaks
1 parent 2264377 commit eb90c72

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

reactjsfoundations.com/public/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
}
8080
.container {
8181
display: flex;
82+
justify-content: space-between;
8283
}
8384
#column2 {
8485
order: 2;
@@ -89,6 +90,7 @@
8990
width: 20%;
9091
text-align: center;
9192
margin-top: 20px;
93+
padding: 10px;
9294
}
9395
ul {
9496
margin-top: 0px;

reactjsfoundations.com/src/WpBlog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function ReactBlog(props) {
5555
}
5656
return (
5757
<div className={styles.blog__posts}>
58-
<h1 className={styles.blog__title}>{props.title}</h1>
58+
<h2 className={styles.blog__title}>{props.title}</h2>
5959
<div style={{ textAlign: 'center' }}>
6060
{page > 1 && <button onClick={handlePrevPage}>Newer posts</button>}{' '}
6161
{page + 1 <= totalPages && (

0 commit comments

Comments
 (0)