Browse Source

Merge pull request #347 from odb366/network-scrollbar-fix

fix for the scrollbar issue in the network list
renovate/lint-staged-8.x
Ben Woosley 7 years ago
committed by GitHub
parent
commit
d6c39e355c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      app/components/Contacts/Network.scss

10
app/components/Contacts/Network.scss

@ -40,8 +40,7 @@
} }
.channels { .channels {
padding: 20px; padding: 20px 0px 20px 20px;
height: 100%;
overflow-y: auto; overflow-y: auto;
.listHeader { .listHeader {
@ -50,6 +49,7 @@
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: space-between;
align-items: baseline; align-items: baseline;
padding-right: 20px;
h2, h2 span { h2, h2 span {
color: $white; color: $white;
@ -71,7 +71,7 @@
&.active { &.active {
display: block; display: block;
position: absolute; position: absolute;
bottom: -100px; margin-top: 0;
z-index: 10; z-index: 10;
li { li {
@ -101,7 +101,7 @@
ul { ul {
margin-top: 20px; margin-top: 20px;
height: auto; height: calc(100vh - 202px);
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
} }
@ -115,7 +115,7 @@
flex-direction: row; flex-direction: row;
justify-content: space-between; justify-content: space-between;
color: $white; color: $white;
padding: 10px 0; padding: 10px 20px 10px 0px;
margin: 10px 0; margin: 10px 0;
cursor: pointer; cursor: pointer;

Loading…
Cancel
Save