summaryrefslogtreecommitdiffstats
path: root/web/react/components/setting_item_max.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-10-28 14:42:58 -0700
committerCorey Hulen <corey@hulen.com>2015-10-28 14:42:58 -0700
commit9312272234c9bb41741ac174fb4b19c73426dce0 (patch)
treeb57ee6536e6e388c1711ceff47e74f69cfd91a0d /web/react/components/setting_item_max.jsx
parentccf9e0cabd9fcede118ca54b24adb33c788a7ae9 (diff)
parent110bc3e7e9258903230780b25478b03c562cded8 (diff)
downloadchat-9312272234c9bb41741ac174fb4b19c73426dce0.tar.gz
chat-9312272234c9bb41741ac174fb4b19c73426dce0.tar.bz2
chat-9312272234c9bb41741ac174fb4b19c73426dce0.zip
Merge pull request #1219 from asaadmahmoodspin/ui-improvements
Ui improvements
Diffstat (limited to 'web/react/components/setting_item_max.jsx')
-rw-r--r--web/react/components/setting_item_max.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/react/components/setting_item_max.jsx b/web/react/components/setting_item_max.jsx
index 774f98a43..d6c4b0d4b 100644
--- a/web/react/components/setting_item_max.jsx
+++ b/web/react/components/setting_item_max.jsx
@@ -35,8 +35,10 @@ export default class SettingItemMax extends React.Component {
var widthClass;
if (this.props.width === 'full') {
widthClass = 'col-sm-12';
- } else {
+ } else if (this.props.width === 'medium') {
widthClass = 'col-sm-10 col-sm-offset-2';
+ } else {
+ widthClass = 'col-sm-9 col-sm-offset-3';
}
return (