Browse Source

Merge pull request #331 from odb366/scrollbars-fix

scrollbar-fix2
renovate/lint-staged-8.x
Ben Woosley 7 years ago
committed by GitHub
parent
commit
f2e1e7fc6d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/components/Contacts/ContactsForm.scss
  2. 7
      app/components/Contacts/Network.scss
  3. 2
      app/components/Wallet/ReceiveModal.scss
  4. 2
      app/routes/activity/components/Activity.scss
  5. 2
      app/routes/app/components/App.scss

2
app/components/Contacts/ContactsForm.scss

@ -48,7 +48,7 @@
}
.networkResults {
overflow-y: scroll;
overflow-y: auto;
height: 250px;
margin-top: 30px;
padding: 20px 0;

7
app/components/Contacts/Network.scss

@ -42,7 +42,7 @@
.channels {
padding: 20px;
height: 100%;
overflow-y: scroll;
overflow-y: auto;
.listHeader {
position: relative;
@ -101,8 +101,9 @@
ul {
margin-top: 20px;
height: 100%;
overflow-y: scroll;
height: auto;
overflow-y: auto;
overflow-x: hidden;
}
.fade {

2
app/components/Wallet/ReceiveModal.scss

@ -106,7 +106,7 @@
.data {
flex: 9;
overflow-x: scroll;
overflow-y: auto;
}
.copy {

2
app/routes/activity/components/Activity.scss

@ -88,7 +88,7 @@
padding-bottom: 50px;
min-height: 100vh;
height: 100vh;
overflow-y: scroll;
overflow-y: auto;
padding-top: 20px;
&.pulldown {

2
app/routes/app/components/App.scss

@ -5,7 +5,7 @@
width: 80%;
display: inline-block;
vertical-align: top;
overflow-y: scroll;
overflow-y: auto;
}
.titleBar {

Loading…
Cancel
Save