mirror of
https://gitlab.com/wirelos/sprocket-ui.git
synced 2025-12-14 14:01:28 +01:00
23 lines
542 B
Plaintext
23 lines
542 B
Plaintext
.Chat {
|
|
.message-container{
|
|
max-height: 200px;
|
|
overflow: auto;
|
|
.messages {
|
|
list-style-type: none;
|
|
.user-label {
|
|
color: lightblue;
|
|
&:before {
|
|
color: @color-main;
|
|
content: '<'
|
|
}
|
|
&:after {
|
|
color: @color-main;
|
|
content: '>'
|
|
}
|
|
}
|
|
.message-text{
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
} |