From 0f922c79f428d9214eafebc5a286d80f7f9d20f3 Mon Sep 17 00:00:00 2001 From: "shakespeare.diy" Date: Mon, 16 Feb 2026 17:31:54 -0600 Subject: [PATCH] Fix emoji picker z-index (tabs to z-[1]) and center avatar in mobile top bar - Tabs z-index lowered to z-[1] so the emoji popover portal (z-50) always renders above them - Mobile top bar avatar container uses flex centering instead of fixed width, ensuring the profile picture is visually centered - Logo wrapped in flex-1 centered container for proper horizontal balance Co-authored-by: shakespeare.diy --- src/components/Feed.tsx | 2 +- src/components/MobileTopBar.tsx | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/Feed.tsx b/src/components/Feed.tsx index 4d5950c3..6bac0f6e 100644 --- a/src/components/Feed.tsx +++ b/src/components/Feed.tsx @@ -15,7 +15,7 @@ export function Feed() { {/* Tabs — stick below the mobile top bar (48px) on small screens, top-0 on desktop */} -
+
+
{/* Left: user avatar or login */} -
+
{user ? (
{/* Center: Mew logo */} - +
+ +
{/* Right: spacer for symmetry */} -
+
); }