Peertube theme: hide avatars when width<576px.
This commit is contained in:
14
conversejs/custom/sass/_peertubetheme.scss
Normal file
14
conversejs/custom/sass/_peertubetheme.scss
Normal file
@ -0,0 +1,14 @@
|
||||
#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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user