summaryrefslogtreecommitdiffstats
path: root/web/react/components/tutorial/tutorial_tip.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-01-04 07:46:11 -0500
committerJoram Wilander <jwawilander@gmail.com>2016-01-04 07:46:11 -0500
commitd4c4037f84c4bc3789a7ef91fe37d64e11bc0628 (patch)
tree77c63620b8a6fb2e891235c50a04dae1728ec090 /web/react/components/tutorial/tutorial_tip.jsx
parent59a3d6e725bef710858a17566af17c50e7c68b7e (diff)
parentf095e772b4486cf09bbbb8880ea3375c6a5bbf7d (diff)
downloadchat-d4c4037f84c4bc3789a7ef91fe37d64e11bc0628.tar.gz
chat-d4c4037f84c4bc3789a7ef91fe37d64e11bc0628.tar.bz2
chat-d4c4037f84c4bc3789a7ef91fe37d64e11bc0628.zip
Merge pull request #1800 from asaadmahmoodspin/ui-improvements
Multiple UI Improvements
Diffstat (limited to 'web/react/components/tutorial/tutorial_tip.jsx')
-rw-r--r--web/react/components/tutorial/tutorial_tip.jsx32
1 files changed, 17 insertions, 15 deletions
diff --git a/web/react/components/tutorial/tutorial_tip.jsx b/web/react/components/tutorial/tutorial_tip.jsx
index d7c67cc9c..03ecdabab 100644
--- a/web/react/components/tutorial/tutorial_tip.jsx
+++ b/web/react/components/tutorial/tutorial_tip.jsx
@@ -101,22 +101,24 @@ export default class TutorialTip extends React.Component {
<div className={'tip-overlay ' + this.props.overlayClass}>
<div className='arrow'></div>
{this.props.screens[this.state.currentScreen]}
- <div className='tutorial__circles'>{dots}</div>
- <div className='text-right'>
- <button
- className='btn btn-primary'
- onClick={this.handleNext}
- >
- {buttonText}
- </button>
- <div className='tip-opt'>
- {'Seen this before? '}
- <a
- href='#'
- onClick={this.skipTutorial}
+ <div className='tutorial__footer'>
+ <div className='tutorial__circles'>{dots}</div>
+ <div className='text-right'>
+ <button
+ className='btn btn-primary'
+ onClick={this.handleNext}
>
- {'Opt out of these tips.'}
- </a>
+ {buttonText}
+ </button>
+ <div className='tip-opt'>
+ {'Seen this before? '}
+ <a
+ href='#'
+ onClick={this.skipTutorial}
+ >
+ {'Opt out of these tips.'}
+ </a>
+ </div>
</div>
</div>
</div>