mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
Merge branch 'main' into fix/wider-max-width-1536
This commit is contained in:
commit
eef3ac41d3
3 changed files with 5 additions and 4 deletions
|
@ -360,8 +360,9 @@ br.big {
|
|||
}
|
||||
|
||||
.img-icon {
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
width: calc(var(--bs-body-line-height) * 1em);
|
||||
height: calc(var(--bs-body-line-height) * 1em);
|
||||
border-radius: 0.25em;
|
||||
}
|
||||
|
||||
.tribute-container ul {
|
||||
|
|
|
@ -39,7 +39,7 @@ export class PictrsImage extends Component<PictrsImageProps, any> {
|
|||
"img-expanded slight-radius":
|
||||
!this.props.thumbnail && !this.props.icon,
|
||||
"img-blur": this.props.thumbnail && this.props.nsfw,
|
||||
"rounded-circle img-cover img-icon me-2": this.props.icon,
|
||||
"img-cover img-icon me-1": this.props.icon,
|
||||
"ms-2 mb-0 rounded-circle img-cover avatar-overlay":
|
||||
this.props.iconOverlay,
|
||||
"avatar-pushup": this.props.pushup,
|
||||
|
|
|
@ -396,7 +396,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
const post_view = this.postView;
|
||||
return (
|
||||
<span className="small">
|
||||
<PersonListing person={post_view.creator} muted={true} />
|
||||
<PersonListing person={post_view.creator} />
|
||||
{this.creatorIsMod_ && (
|
||||
<span className="mx-1 badge text-bg-light">
|
||||
{I18NextService.i18n.t("mod")}
|
||||
|
|
Loading…
Reference in a new issue