Skip to content

Commit

Permalink
a7 change layout
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhuWang1112 committed Mar 23, 2023
1 parent f093d5a commit a413e38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tuiter/post-summary-list/post-summary-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "../index.css"

const PostSummaryItem = ({post}) => {
return (
<li className="list-group-item" style={{"display": "flex", "align-items": "center"}}>
<li className="list-group-item" style={{"display": "flex"}}>
<div style={{"flex": "1"}}>
<div className="wd-color-gray">{post.topic}</div>
<div>
Expand All @@ -15,7 +15,7 @@ const PostSummaryItem = ({post}) => {
<b>{post.title}</b>
</div>
</div>
<div>
<div style={{"display": "flex","align-items": "center"}}>
<img src={`/images/${post.image}`} className="wd-post-image"/>
</div>
</li>
Expand Down

0 comments on commit a413e38

Please sign in to comment.