Files
chat-gpz/components/Chat/ChatLayout.module.css
T
Zacharias-Brohn 02fd30924b changes
2026-01-14 22:13:08 +01:00

31 lines
435 B
CSS

.chatBubble {
max-width: 80%;
line-height: 1.6;
}
.chatBubbleUser {
border-top-right-radius: 0;
}
.chatBubbleAssistant {
border-top-left-radius: 0;
}
.chatScrollViewport {
scroll-behavior: smooth;
}
/* Chat list item - cogwheel appears on hover */
.chatListItem {
position: relative;
}
.chatListItem .cogwheel {
opacity: 0;
transition: opacity 0.15s ease-in-out;
}
.chatListItem:hover .cogwheel {
opacity: 1;
}