diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-04 13:32:14 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-04 13:32:14 +0100 |
commit | 6d5ef89356e234b5208b5308fa00cf08459de831 (patch) | |
tree | 31ad2a263212eb8063ef1de1ccd91b5c5d44f22c /app/assets/javascripts/components/features/followers | |
parent | 98c3a5e9c38b3bc653002dafab0504fdee3d2c44 (diff) |
Reduce code duplication, add touch scrolling behaviour for webkit browsers
on scrollable areas
Diffstat (limited to 'app/assets/javascripts/components/features/followers')
-rw-r--r-- | app/assets/javascripts/components/features/followers/index.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/followers/index.jsx b/app/assets/javascripts/components/features/followers/index.jsx index feb849b9b..ff3f97b09 100644 --- a/app/assets/javascripts/components/features/followers/index.jsx +++ b/app/assets/javascripts/components/features/followers/index.jsx @@ -39,7 +39,7 @@ const Followers = React.createClass({ return ( <ScrollContainer scrollKey='followers'> - <div style={{ overflowY: 'scroll', flex: '1 1 auto', overflowX: 'hidden' }} className='scrollable'> + <div className='scrollable'> {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)} </div> </ScrollContainer> |