about summary refs log tree commit diff
path: root/bskyembed/src/components/post.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-04-14 20:13:35 +0300
committerGitHub <noreply@github.com>2025-04-14 10:13:35 -0700
commitd899d09e60761ec512b0a9aa028d252454348bfe (patch)
treefe44909f7845c10e6b36c8b3c0ff11ab9a72be55 /bskyembed/src/components/post.tsx
parent2e73464fd10d2aeadad578f14ed3449115d75c38 (diff)
downloadvoidsky-d899d09e60761ec512b0a9aa028d252454348bfe.tar.zst
[Embed] Fix up post embeds, and other tweaks (#8185)
* fix eslint

* Update .eslintrc.cjs

* fix 3 and 4 image aspect ratios

* round embeds more

* fix line height
Diffstat (limited to 'bskyembed/src/components/post.tsx')
-rw-r--r--bskyembed/src/components/post.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyembed/src/components/post.tsx b/bskyembed/src/components/post.tsx
index 26945eb69..68292f515 100644
--- a/bskyembed/src/components/post.tsx
+++ b/bskyembed/src/components/post.tsx
@@ -173,7 +173,7 @@ function PostContent({record}: {record: AppBskyFeedPost.Record | null}) {
   }
 
   return (
-    <p className="min-[300px]:text-lg leading-6 break-word break-words whitespace-pre-wrap">
+    <p className="min-[300px]:text-lg leading-6 min-[300px]:leading-6 break-word break-words whitespace-pre-wrap">
       {richText}
     </p>
   )