summaryrefslogtreecommitdiffstats
path: root/web/react/components/setting_item_min.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-02-23 14:56:23 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-02-23 14:56:23 -0500
commit6e0ce387a35cccb0ecc849936acab62e75e90128 (patch)
treeb85e15766584ee479282d9e9a9e670758fe1e28e /web/react/components/setting_item_min.jsx
parent0031c6fd1a4df621cbecfd2a2b3efe9a40cd49ce (diff)
parentc907edde1ba97601d97fec8a86d7b307fc86e491 (diff)
downloadchat-6e0ce387a35cccb0ecc849936acab62e75e90128.tar.gz
chat-6e0ce387a35cccb0ecc849936acab62e75e90128.tar.bz2
chat-6e0ce387a35cccb0ecc849936acab62e75e90128.zip
Merge pull request #2231 from asaadmahmoodspin/ui-improvements
Ui Improvements
Diffstat (limited to 'web/react/components/setting_item_min.jsx')
-rw-r--r--web/react/components/setting_item_min.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/setting_item_min.jsx b/web/react/components/setting_item_min.jsx
index 868b7e1b2..cb2ee0d8f 100644
--- a/web/react/components/setting_item_min.jsx
+++ b/web/react/components/setting_item_min.jsx
@@ -8,7 +8,7 @@ export default class SettingItemMin extends React.Component {
let editButton = null;
if (!this.props.disableOpen) {
editButton = (
- <li className='col-sm-2 section-edit'>
+ <li className='col-sm-3 section-edit'>
<a
className='theme'
href='#'
@@ -29,9 +29,9 @@ export default class SettingItemMin extends React.Component {
className='section-min'
onClick={this.props.updateSection}
>
- <li className='col-sm-10 section-title'>{this.props.title}</li>
+ <li className='col-sm-9 section-title'>{this.props.title}</li>
{editButton}
- <li className='col-sm-7 section-describe'>{this.props.describe}</li>
+ <li className='col-sm-9 section-describe'>{this.props.describe}</li>
</ul>
);
}