Fix too large announcements not being scrollable in web UI (#13211)
This commit is contained in:
parent
e69a3f54a1
commit
503eab1c1f
1 changed files with 6 additions and 1 deletions
|
@ -870,6 +870,7 @@
|
||||||
|
|
||||||
.announcements__item__content {
|
.announcements__item__content {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
.emojione {
|
.emojione {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
|
@ -6676,17 +6677,21 @@ noscript {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
padding-right: 15px + 18px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
max-height: 50vh;
|
||||||
|
overflow: hidden;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
&__range {
|
&__range {
|
||||||
display: block;
|
display: block;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
padding-right: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__unread {
|
&__unread {
|
||||||
|
|
Loading…
Reference in a new issue