this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make copy button smaller and decrease chat messages gap

+6 -2
+5 -1
apps/web/src/components/chat-messages.tsx
··· 73 73 }, [messages]); 74 74 75 75 return ( 76 - <Stack ref={containerRef} className="no-scrollbar flex-1 overflow-y-auto"> 76 + <Stack 77 + ref={containerRef} 78 + gap="xs" 79 + className="no-scrollbar flex-1 overflow-y-auto" 80 + > 77 81 {messages.map((message) => ( 78 82 <ChatMessage 79 83 key={message.id}
+1 -1
apps/web/src/components/copy-button.tsx
··· 29 29 return ( 30 30 <Button 31 31 type="button" 32 - size="icon" 32 + size="icon-xs" 33 33 variant="ghost" 34 34 onClick={handleCopy} 35 35 className="text-muted-foreground hover:text-foreground"