From 00a4ee297660d89e304c51f882d44fc94c9e542a Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Sun, 1 Mar 2026 05:34:25 -0600 Subject: [PATCH] Vines: taller desktop tabs matching notifications, more top padding on replies sidebar --- src/pages/VinesFeedPage.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/VinesFeedPage.tsx b/src/pages/VinesFeedPage.tsx index 01625840..e9f1efb3 100644 --- a/src/pages/VinesFeedPage.tsx +++ b/src/pages/VinesFeedPage.tsx @@ -39,7 +39,7 @@ import { ProfileHoverCard } from '@/components/ProfileHoverCard'; import { Avatar, AvatarImage, AvatarFallback } from '@/components/ui/avatar'; import { Skeleton } from '@/components/ui/skeleton'; -import { DittoLogo } from '@/components/DittoLogo'; + import { ReplyComposeModal } from '@/components/ReplyComposeModal'; import { ComposeBox } from '@/components/ComposeBox'; import { getDisplayName } from '@/lib/getDisplayName'; @@ -168,7 +168,7 @@ function VinesCommentsContent({ activeVine }: VinesCommentsContentProps) { }, [rawReplies]); return ( -
+
{!activeVine ? (

@@ -828,7 +828,7 @@ interface VinesTabBarProps { function VinesTabBar({ tab, onTabChange, hasUser }: VinesTabBarProps) { return ( -

+
{hasUser && ( onTabChange('follows')} /> )} @@ -842,13 +842,13 @@ function VinesTabButton({ label, active, onClick }: { label: string; active: boo );