diff options
author | crupest <crupest@outlook.com> | 2021-05-06 15:32:02 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-06 15:32:02 +0800 |
commit | ffbc90d0c9b9dc15d0c2f327a669d9385fce9590 (patch) | |
tree | 57859c57a9c58d9d0c58de14f4e09b84e23af514 /FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx | |
parent | 2c6cf0502b5d6cc5bf972310232f71ec543847ef (diff) | |
download | timeline-ffbc90d0c9b9dc15d0c2f327a669d9385fce9590.tar.gz timeline-ffbc90d0c9b9dc15d0c2f327a669d9385fce9590.tar.bz2 timeline-ffbc90d0c9b9dc15d0c2f327a669d9385fce9590.zip |
...
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx index 295ee3b9..e9c75de7 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx @@ -63,15 +63,15 @@ const TimelinePostView: React.FC<TimelinePostViewProps> = (props) => { /> ) : null} <div className="timeline-item-header"> - <span className="mr-2"> + <span className="me-2"> <span> <Link to={"/users/" + props.post.author.username}> <UserAvatar username={post.author.username} - className="timeline-avatar mr-1" + className="timeline-avatar me-1" /> </Link> - <small className="text-dark mr-2">{post.author.nickname}</small> + <small className="text-dark me-2">{post.author.nickname}</small> <small className="text-secondary white-space-no-wrap"> {new Date(post.time).toLocaleTimeString()} </small> |