GodUIGodUI
109Follow on X
You
How do I center a div in 2026?
GodUI
Use a grid parent with `place-items-center` — it centers on both axes in a single declaration.

Conversation Thread

tsx
import {ConversationThread,ConversationMessage,StreamingText,} from "@/components/godui/conversation-thread";export function ConversationThreadDemo() {return (  <ConversationThread>    <ConversationMessage role="user" name="You">      How do I center a div in 2026?    </ConversationMessage>    <ConversationMessage role="assistant" name="GodUI" streaming>      <StreamingText text="Use a grid parent with place-items-center." />    </ConversationMessage>  </ConversationThread>);}