diff options
author | Eugen <eugen@zeonfederated.com> | 2017-01-05 02:57:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-05 02:57:13 +0100 |
commit | db21724a5a74d08f895753bf755cbf558148d9b5 (patch) | |
tree | 633873ec75f223de21d4836729dfbfa447d882b3 /app/assets/javascripts/components/features/ui | |
parent | 98b83aca372fabdfc32b05c1eb72c80a79102e53 (diff) | |
parent | aaee8c9b5d935143cf749fbea78f8cfee74ee37f (diff) |
Merge pull request #393 from ticky/qol-for-four-inch-phones
Improve experience on 4-inch phones
Diffstat (limited to 'app/assets/javascripts/components/features/ui')
-rw-r--r-- | app/assets/javascripts/components/features/ui/components/tabs_bar.jsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx b/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx index 219979522..dbfdc3f85 100644 --- a/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx +++ b/app/assets/javascripts/components/features/ui/components/tabs_bar.jsx @@ -3,15 +3,14 @@ import { FormattedMessage } from 'react-intl'; const outerStyle = { background: '#373b4a', - margin: '10px', flex: '0 0 auto', - marginBottom: '0' + overflowY: 'auto' }; const tabStyle = { display: 'block', flex: '1 1 auto', - padding: '10px', + padding: '10px 5px', color: '#fff', textDecoration: 'none', textAlign: 'center', |