Fix horizontal scrolling in convo/message lists (#1448)

This removes some errant horizontal scrollability from the conversation list and
the message list.

// FREEBIE
pull/749/head
Lilia 8 years ago committed by Scott Nonnenberg
parent 5d8e8459b3
commit 71036e31ab

@ -111,7 +111,7 @@
width: 100%; width: 100%;
margin: 0; margin: 0;
padding: 10px 0 0 0; padding: 10px 0 0 0;
overflow-y: overlay; overflow-y: auto;
} }
} }
} }

@ -24,7 +24,7 @@
.content { .content {
background-color: $grey_l; background-color: $grey_l;
flex-grow: 1; flex-grow: 1;
overflow-y: overlay; overflow-y: auto;
} }
} }
.network-status-container { .network-status-container {

@ -868,7 +868,7 @@ img.emoji.jumbo {
.gutter .content { .gutter .content {
background-color: #f3f3f3; background-color: #f3f3f3;
flex-grow: 1; flex-grow: 1;
overflow-y: overlay; } overflow-y: auto; }
.network-status-container .network-status { .network-status-container .network-status {
background: url("/images/error_red.svg") no-repeat left 10px center; background: url("/images/error_red.svg") no-repeat left 10px center;
@ -1158,7 +1158,7 @@ input.search {
width: 100%; width: 100%;
margin: 0; margin: 0;
padding: 10px 0 0 0; padding: 10px 0 0 0;
overflow-y: overlay; } overflow-y: auto; }
.discussion-container { .discussion-container {
background-color: #eee; } background-color: #eee; }

Loading…
Cancel
Save