diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-16 17:09:00 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-16 17:09:00 +0200 |
commit | b8eda3026f2947fc7ac2c60df2878209e7327480 (patch) | |
tree | 5259462a652cef64d08c0820444ab6ea82458241 /app/assets/javascripts/components/features/ui | |
parent | 447033038549495318f7c218941829e845aabb61 (diff) |
Fix scrolling on small devices for account timelines and compose column
Diffstat (limited to 'app/assets/javascripts/components/features/ui')
-rw-r--r-- | app/assets/javascripts/components/features/ui/components/drawer.jsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/ui/components/drawer.jsx b/app/assets/javascripts/components/features/ui/components/drawer.jsx index 8966602e2..d31d0e453 100644 --- a/app/assets/javascripts/components/features/ui/components/drawer.jsx +++ b/app/assets/javascripts/components/features/ui/components/drawer.jsx @@ -5,7 +5,8 @@ const style = { background: '#454b5e', padding: '0', display: 'flex', - flexDirection: 'column' + flexDirection: 'column', + overflowY: 'auto' }; const Drawer = React.createClass({ |