From f8b132095c5ca918225ff6335e34f8650ceaa271 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 17 Jan 2026 11:56:16 +0000 Subject: [PATCH] style: Change emoji set detail to horizontal row layout Render emoji shortcodes in a horizontal wrapping flow instead of a 6-column grid. This provides a more compact view with emoji and shortcode inline together. --- .../nostr/kinds/EmojiSetDetailRenderer.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/components/nostr/kinds/EmojiSetDetailRenderer.tsx b/src/components/nostr/kinds/EmojiSetDetailRenderer.tsx index ecb9204..6ee6391 100644 --- a/src/components/nostr/kinds/EmojiSetDetailRenderer.tsx +++ b/src/components/nostr/kinds/EmojiSetDetailRenderer.tsx @@ -23,23 +23,22 @@ export function EmojiSetDetailRenderer({ event }: { event: NostrEvent }) { ) : ( <> - {/* Emoji grid */} -
+ {/* Emoji list - horizontal flow with wrapping */} +
{emojis.map((emoji) => (
-
+ :{emoji.shortcode}: -
+
))}