Browse Source
Merge pull request #342 from Empact/fix/scrolling
Fix the transaction scrollbar to consistently reveal all the transactions
renovate/lint-staged-8.x
Ben Woosley
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
5 deletions
-
app/routes/activity/components/Activity.scss
|
@ -32,7 +32,6 @@ |
|
|
|
|
|
|
|
|
.activities { |
|
|
.activities { |
|
|
background: $white; |
|
|
background: $white; |
|
|
height: 100%; |
|
|
|
|
|
|
|
|
|
|
|
.header { |
|
|
.header { |
|
|
background: $spaceblue; |
|
|
background: $spaceblue; |
|
@ -85,11 +84,11 @@ |
|
|
.activityContainer { |
|
|
.activityContainer { |
|
|
background: $spaceblue; |
|
|
background: $spaceblue; |
|
|
transition: opacity 0.25s; |
|
|
transition: opacity 0.25s; |
|
|
padding-bottom: 50px; |
|
|
height: calc(100vh - 304px); |
|
|
min-height: 100vh; |
|
|
|
|
|
height: 100vh; |
|
|
|
|
|
overflow-y: auto; |
|
|
overflow-y: auto; |
|
|
|
|
|
overflow-x: hidden; |
|
|
padding-top: 20px; |
|
|
padding-top: 20px; |
|
|
|
|
|
padding-bottom: 20px; |
|
|
|
|
|
|
|
|
&.pulldown { |
|
|
&.pulldown { |
|
|
opacity: 0.15; |
|
|
opacity: 0.15; |
|
@ -100,7 +99,7 @@ |
|
|
padding: 0 40px; |
|
|
padding: 0 40px; |
|
|
|
|
|
|
|
|
&:hover { |
|
|
&:hover { |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.left, .center, .right { |
|
|
.left, .center, .right { |
|
|