diff --git a/src/components/ComposeBox.tsx b/src/components/ComposeBox.tsx index 60dac714..714f5bf1 100644 --- a/src/components/ComposeBox.tsx +++ b/src/components/ComposeBox.tsx @@ -188,7 +188,7 @@ export function ComposeBox({ onSuccess, placeholder = "What's on your mind?", co return (
{!hideAvatar && ( - + {user ? (metadata?.name?.[0] || '?').toUpperCase() : '?'} @@ -205,7 +205,7 @@ export function ComposeBox({ onSuccess, placeholder = "What's on your mind?", co onFocus={expand} placeholder={placeholder} className={cn( - 'w-full bg-transparent text-foreground placeholder:text-muted-foreground resize-none outline-none text-lg pt-3 pb-2', + 'w-full bg-transparent text-foreground placeholder:text-muted-foreground resize-none outline-none text-lg pt-2.5 pb-2 opacity-85', isExpanded ? 'min-h-[100px]' : 'min-h-[44px]', )} rows={isExpanded ? 4 : 1} diff --git a/src/components/ProfileRightSidebar.tsx b/src/components/ProfileRightSidebar.tsx index 2b0300dc..27bacf15 100644 --- a/src/components/ProfileRightSidebar.tsx +++ b/src/components/ProfileRightSidebar.tsx @@ -254,7 +254,7 @@ export function ProfileRightSidebar({ pubkey, fields }: ProfileRightSidebarProps const { data: media, isLoading: mediaLoading } = useProfileMedia(pubkey); return ( -