24 lines
474 B
SCSS
24 lines
474 B
SCSS
|
|
.chat-root.channel {
|
||
|
|
background-color: #f2f2f2;
|
||
|
|
.chat-content {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 700px;
|
||
|
|
align-self: center;
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.messageOut, .messageIn {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
.senderAndTime {
|
||
|
|
flex: 0 0 100%;
|
||
|
|
}
|
||
|
|
.content {
|
||
|
|
flex: 1 1 auto;
|
||
|
|
}
|
||
|
|
.bubble {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|