Browse Source
Merge pull request #609 from gre/fix-scroll-blink
fix GrowScroll to blink scroll because of `auto`
master
Gaëtan Renaudeau
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/base/GrowScroll/index.js
|
|
@ -46,7 +46,7 @@ class GrowScroll extends PureComponent<Props> { |
|
|
|
} |
|
|
|
|
|
|
|
const scrollContainerStyles = { |
|
|
|
overflowY: 'auto', |
|
|
|
overflowY: 'scroll', |
|
|
|
marginRight: `-80px`, |
|
|
|
paddingRight: `80px`, |
|
|
|
...(maxHeight |
|
|
|