From 0cdc78b503674955af6cab27ba4647487b66686e Mon Sep 17 00:00:00 2001 From: "shi.gg" Date: Sun, 25 Jan 2026 06:18:03 +0000 Subject: [PATCH] fix: handle text clipping on web https://witchsky.app/profile/did:plc:irs2tcoeuvuwj3m4yampbuco https://witchsky.app/profile/did:plc:irs2tcoeuvuwj3m4yampbuco depending on the zoom of the page, the `@shi.gg` clips at the bottom before: https://i.postimg.cc/nccKVK5k/Screenshot-From-2026-01-24-21-25-31.png after: https://i.postimg.cc/dttRQRXj/Screenshot-From-2026-01-24-21-25-34.png --- src/view/com/util/PostMeta.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index 9cd44c91b..6fdda3da8 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -111,7 +111,7 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => { a.pl_2xs, a.self_center, { - marginTop: platform({web: 0, ios: 0, android: -1}), + marginTop: platform({web: 1, ios: 0, android: -1}), }, ]}> { style={[ a.text_md, t.atoms.text_contrast_medium, - a.leading_tight, + {lineHeight:1.17}, {flexShrink: 10}, ]}> {NON_BREAKING_SPACE + sanitizeHandle(handle, '@')} -- 2.51.2