Skip to content

Commit

Permalink
Fixes scrollbar displaying in channels screen without many items (#1502)
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsos authored May 13, 2020
2 parents 399fb0a + ae43b57 commit cd9f253
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions raiden-dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
- [#1380] Allow the user to withdraw tokens from the Raiden Account.
- [#1371] Mint and deposit utility token to pay Monitoring Service.

### Fixed

- [#1490] Fixes scrollbar always showing up in channels screen.

[#1490]: https://github.com/raiden-network/light-client/issues/1490
[#1212]: https://github.com/raiden-network/light-client/issues/1212
[#1380]: https://github.com/raiden-network/light-client/issues/1380
[#1371]: https://github.com/raiden-network/light-client/issues/1371
Expand Down
7 changes: 3 additions & 4 deletions raiden-dapp/src/components/navigation/Channels.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,6 @@ export default class Channels extends Mixins(NavigationMixin) {
.channels {
width: 100%;
height: 100%;
overflow-y: scroll;
@extend .themed-scrollbar;
&:first-child {
padding-top: 50px;
Expand All @@ -182,9 +180,10 @@ export default class Channels extends Mixins(NavigationMixin) {
}
&__wrapper {
height: 100%;
height: calc(100% - 60px);
width: 100%;
overflow-y: visible;
overflow-y: auto;
@extend .themed-scrollbar;
}
&__header {
Expand Down

0 comments on commit cd9f253

Please sign in to comment.