summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2016-03-29 17:59:25 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2016-03-29 17:59:25 +0500
commit128e6c9d97420f35e4b9ddb8ca6cc218c85a65c6 (patch)
tree54226c1cf42b02a52b4803452220349730e77119 /webapp
parent501eef0385065d8630e5ddc299f8693a507e3a29 (diff)
downloadchat-128e6c9d97420f35e4b9ddb8ca6cc218c85a65c6.tar.gz
chat-128e6c9d97420f35e4b9ddb8ca6cc218c85a65c6.tar.bz2
chat-128e6c9d97420f35e4b9ddb8ca6cc218c85a65c6.zip
Fixing see other themes link
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/user_settings/premade_theme_chooser.jsx21
1 files changed, 11 insertions, 10 deletions
diff --git a/webapp/components/user_settings/premade_theme_chooser.jsx b/webapp/components/user_settings/premade_theme_chooser.jsx
index 61e876d40..326120957 100644
--- a/webapp/components/user_settings/premade_theme_chooser.jsx
+++ b/webapp/components/user_settings/premade_theme_chooser.jsx
@@ -52,16 +52,17 @@ export default class PremadeThemeChooser extends React.Component {
return (
<div className='row appearance-section'>
{premadeThemes}
- <a
- href='http://docs.mattermost.com/help/settings/theme-colors.html#custom-themes'
- target='_blank'
- className='col-sm-12 padding-bottom x2'
- >
- <FormattedMessage
- id='user.settings.display.theme.otherThemes'
- defaultMessage='See other themes'
- />
- </a>
+ <div className='col-sm-12 padding-bottom x2'>
+ <a
+ href='http://docs.mattermost.com/help/settings/theme-colors.html#custom-themes'
+ target='_blank'
+ >
+ <FormattedMessage
+ id='user.settings.display.theme.otherThemes'
+ defaultMessage='See other themes'
+ />
+ </a>
+ </div>
</div>
);
}