From b8eda3026f2947fc7ac2c60df2878209e7327480 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 16 Oct 2016 17:09:00 +0200 Subject: Fix scrolling on small devices for account timelines and compose column --- app/assets/javascripts/components/features/ui/components/drawer.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/assets/javascripts/components/features/ui') 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({ -- cgit