2021-11-17 10:34:01 +00:00
|
|
|
#conversejs.theme-peertube {
|
|
|
|
// hidding avatars when screen width is not big enough.
|
|
|
|
@media screen and (max-width: 576px) {
|
|
|
|
.message {
|
|
|
|
.chat-msg__content {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-msg__avatar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-17 10:57:52 +00:00
|
|
|
|
|
|
|
// Bigger occupants sidebar when width is not big enough.
|
|
|
|
@media screen and (max-width: 576px) {
|
|
|
|
.chatroom {
|
|
|
|
.box-flyout {
|
|
|
|
.chatroom-body {
|
|
|
|
.occupants {
|
|
|
|
min-width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-17 10:34:01 +00:00
|
|
|
}
|