Spaces:
Runtime error
Runtime error
File size: 957 Bytes
d757506 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
.chat-container {
position: relative;
&-msg-content-right {
display: flex;
flex-wrap: nowrap;
justify-content: flex-end;
word-wrap: normal;
word-break: break-word;
}
&-msg-content-left {
display: flex;
max-width: 600px;
flex-wrap: nowrap;
justify-content: flex-start;
word-wrap: normal;
word-break: break-word;
}
&-msg {
height: 100%;
line-height: 30px;
background-color: darkgrey;
border-radius: 30px;
padding: 10px;
margin: 10px 0;
}
&-input {
position: fixed;
bottom: 40px;
padding: 10px;
border-radius: 30px;
border: 1px solid #ccc;
left: 30px;
.adm-input {
width: 500px;
}
.adm-button {
padding: 0;
border: none;
background-color: transparent;
}
}
} |