summaryrefslogtreecommitdiffstats
path: root/webapp/components/user_settings/premade_theme_chooser.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmoodspin@users.noreply.github.com>2016-05-02 17:39:56 +0500
committerChristopher Speller <crspeller@gmail.com>2016-05-02 08:39:56 -0400
commita0ba70823de874e3067caea5ed336b92b234ce2f (patch)
tree091590816e1d66f93681de6bec73275c9d6afd68 /webapp/components/user_settings/premade_theme_chooser.jsx
parenta5fea696a790582069ef05835a89e5a3d6159e4d (diff)
downloadchat-a0ba70823de874e3067caea5ed336b92b234ce2f.tar.gz
chat-a0ba70823de874e3067caea5ed336b92b234ce2f.tar.bz2
chat-a0ba70823de874e3067caea5ed336b92b234ce2f.zip
Multiple UI improvements (#2838)
* Multiple UI improvements * Adding translations in en.json
Diffstat (limited to 'webapp/components/user_settings/premade_theme_chooser.jsx')
-rw-r--r--webapp/components/user_settings/premade_theme_chooser.jsx26
1 files changed, 15 insertions, 11 deletions
diff --git a/webapp/components/user_settings/premade_theme_chooser.jsx b/webapp/components/user_settings/premade_theme_chooser.jsx
index 7ccc76d7a..4b0faf865 100644
--- a/webapp/components/user_settings/premade_theme_chooser.jsx
+++ b/webapp/components/user_settings/premade_theme_chooser.jsx
@@ -51,17 +51,21 @@ export default class PremadeThemeChooser extends React.Component {
return (
<div className='row appearance-section'>
- {premadeThemes}
- <div className='col-sm-12 padding-bottom x2'>
- <a
- href='http://docs.mattermost.com/help/settings/theme-colors.html#custom-theme-examples'
- target='_blank'
- >
- <FormattedMessage
- id='user.settings.display.theme.otherThemes'
- defaultMessage='See other themes'
- />
- </a>
+ <div className='clearfix'>
+ {premadeThemes}
+ </div>
+ <div className='clearfix'>
+ <div className='col-sm-12 padding-bottom x2'>
+ <a
+ href='http://docs.mattermost.com/help/settings/theme-colors.html#custom-theme-examples'
+ target='_blank'
+ >
+ <FormattedMessage
+ id='user.settings.display.theme.otherThemes'
+ defaultMessage='See other themes'
+ />
+ </a>
+ </div>
</div>
</div>
);