ai-chat-ui-ck
Version:
A reusable AI Chat UI component built with React and CSS.
24 lines (21 loc) • 434 B
CSS
/* AIChatUI.css */
.chat-ui-container {
width: 100%;
max-width: 768px;
margin: 0 auto;
padding: 16px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #fff;
}
.chat-messages {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 12px;
max-height: 500px;
overflow-y: auto;
}
.chat-inner-title{
text-align: center;
}