mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
fix: Fix post listing vote/image/title widths
This commit is contained in:
parent
a90c34eb7f
commit
271425b963
1 changed files with 16 additions and 12 deletions
|
@ -1407,7 +1407,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
<div className="d-none d-sm-block">
|
||||
<article className="row post-container">
|
||||
{!this.props.viewOnly && (
|
||||
<div className="col-1">
|
||||
<div className="col-auto">
|
||||
<VoteButtons
|
||||
voteContentType={VoteContentType.Post}
|
||||
id={this.postView.post.id}
|
||||
|
@ -1418,10 +1418,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
/>
|
||||
</div>
|
||||
)}
|
||||
<div className="col-sm-2 pe-0 post-media">
|
||||
<div className="col-sm-10">
|
||||
<div className="row">
|
||||
<div className="col-sm-3 col-lg-2 pe-0 post-media">
|
||||
<div className="">{this.thumbnail()}</div>
|
||||
</div>
|
||||
<div className="col-12 col-sm-9">
|
||||
<div className="col-12 col-sm-9 col-lg-10">
|
||||
{this.postTitleLine()}
|
||||
{this.createdLine()}
|
||||
{this.showBodyPreview()}
|
||||
|
@ -1430,6 +1432,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
{this.userActionsLine()}
|
||||
{this.removeAndBanDialogs()}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</>
|
||||
|
|
Loading…
Reference in a new issue