From: Jay Sitter Date: Wed, 5 Jul 2023 19:31:08 +0000 (-0400) Subject: fix: Fix mobile thumbnail being too small (#1814) X-Git-Url: http://these/git/?a=commitdiff_plain;h=9ce164245f51b834997f31f3f12497ee87474965;p=lemmy-ui.git fix: Fix mobile thumbnail being too small (#1814) Co-authored-by: SleeplessOne1917 --- diff --git a/src/assets/css/main.css b/src/assets/css/main.css index b92f086..36566b9 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -204,6 +204,11 @@ blockquote { height: 5rem; } +.mobile-thumbnail-container .thumbnail { + width: 100%; + height: auto; +} + .thumbnail svg { height: 1.25rem; width: 1.25rem; diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index d9b3ad2..eb4dc8d 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -1327,10 +1327,10 @@ export class PostListing extends Component { const post = this.postView.post; return post.thumbnail_url || (post.url && isImage(post.url)) ? (
-
+
{this.postTitleLine()}
-
+
{/* Post thumbnail */} {!this.state.imageExpanded && this.thumbnail()}