this repo has no description
0
fork

Configure Feed

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

Clean up styles in chats index route

+3 -3
+3 -3
apps/web/src/routes/chats.index.tsx
··· 10 10 11 11 function RouteComponent() { 12 12 return ( 13 - <Stack className="h-full min-h-0 flex-1 flex-col justify-between overflow-hidden py-4 md:py-8"> 14 - <Stack justify="center" className="min-h-0 flex-1 overflow-y-auto pr-1"> 13 + <Stack justify="between" className="flex-1 py-4"> 14 + <Stack justify="center" className="flex-1"> 15 15 <Heading>What's on your mind?</Heading> 16 16 17 17 <figure className="relative"> ··· 32 32 </figcaption> 33 33 </figure> 34 34 </Stack> 35 - <ChatForm className="shrink-0" /> 35 + <ChatForm /> 36 36 </Stack> 37 37 ); 38 38 }