Fix horizontal scrolling in convo/message lists (#1448)
This removes some errant horizontal scrollability from the conversation list and the message list. // FREEBIE
This commit is contained in:
parent
5d8e8459b3
commit
71036e31ab
3 changed files with 4 additions and 4 deletions
|
@ -111,7 +111,7 @@
|
|||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 10px 0 0 0;
|
||||
overflow-y: overlay;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
.content {
|
||||
background-color: $grey_l;
|
||||
flex-grow: 1;
|
||||
overflow-y: overlay;
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
.network-status-container {
|
||||
|
|
|
@ -868,7 +868,7 @@ img.emoji.jumbo {
|
|||
.gutter .content {
|
||||
background-color: #f3f3f3;
|
||||
flex-grow: 1;
|
||||
overflow-y: overlay; }
|
||||
overflow-y: auto; }
|
||||
|
||||
.network-status-container .network-status {
|
||||
background: url("/images/error_red.svg") no-repeat left 10px center;
|
||||
|
@ -1158,7 +1158,7 @@ input.search {
|
|||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 10px 0 0 0;
|
||||
overflow-y: overlay; }
|
||||
overflow-y: auto; }
|
||||
|
||||
.discussion-container {
|
||||
background-color: #eee; }
|
||||
|
|
Loading…
Reference in a new issue