ai-chat-ui-ck
Version:
A reusable AI Chat UI component built with React and CSS.
27 lines (23 loc) • 494 B
CSS
/* ChatBubble.css */
.chat-bubble {
display: flex;
max-width: 80%;
padding: 10px 14px;
border-radius: 16px;
font-size: 14px;
line-height: 1.4;
}
.chat-bubble.user {
align-self: flex-end;
background-color: #DCF8C6;
color: #000;
}
.chat-bubble.assistant {
align-self: flex-start;
background-color: #F1F0F0;
color: #333;
}
.bubble-content {
white-space: pre-wrap;
word-break: break-word;
}