Katheryne/Frontend/Components/MessageBubble.razor.css

24 lines
465 B
CSS
Raw Normal View History

2023-10-09 13:31:03 +08:00
.bubble-left {
2023-10-07 18:55:22 +08:00
background-color: white;
2023-10-09 13:31:03 +08:00
border-radius: 1px 10px 10px 10px;
2023-10-07 18:55:22 +08:00
padding: 5px;
2023-10-08 23:43:49 +08:00
min-width: 80px;
2023-10-09 13:31:03 +08:00
max-width: 300px;
width: fit-content;
justify-content: center;
}
.bubble-right {
background-color: white;
border-radius: 10px 1px 10px 10px;
padding: 5px;
max-width: 300px;
width: fit-content;
justify-content: center;
}
.message-text {
font-size: 1.1rem;
margin: 3px;
word-break: break-word;
2023-10-07 18:55:22 +08:00
}