diff options
author | crupest <crupest@outlook.com> | 2020-06-16 16:31:06 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-16 16:31:06 +0800 |
commit | 441f8cdd6282a1d4d814b85d353c1553283411ec (patch) | |
tree | 26dedcbedb2088dac1ea00e4039f8cba815c650d /Timeline | |
parent | 36a30551636bc01d726f9947297b5b6fd5e924c0 (diff) | |
download | timeline-441f8cdd6282a1d4d814b85d353c1553283411ec.tar.gz timeline-441f8cdd6282a1d4d814b85d353c1553283411ec.tar.bz2 timeline-441f8cdd6282a1d4d814b85d353c1553283411ec.zip |
fix(front): Fix layout issue when last post is short.
Diffstat (limited to 'Timeline')
-rw-r--r-- | Timeline/ClientApp/src/app/timeline/TimelineItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/app/timeline/TimelineItem.tsx b/Timeline/ClientApp/src/app/timeline/TimelineItem.tsx index f19e70e7..79b9a400 100644 --- a/Timeline/ClientApp/src/app/timeline/TimelineItem.tsx +++ b/Timeline/ClientApp/src/app/timeline/TimelineItem.tsx @@ -125,7 +125,7 @@ const TimelineItem: React.FC<TimelineItemProps> = (props) => { </div> ) : null} </Row> - <p className="row d-block timeline-content"> + <p className="row d-block mb-0 timeline-content clearfix"> <Link className="float-right float-sm-left mx-2" to={'/users/' + props.post.author.username} |