aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-20 02:00:47 +0800
committerDan <danjm.com@gmail.com>2018-03-20 02:00:47 +0800
commitd8788af9b867cebcc702384b780cc06a06f9d33b (patch)
tree126ae3e4bfd478b75bf6a550caa40d1629db0761 /ui/app/app.js
parente51ba2e75c517d88f0e526eed613ef656af47293 (diff)
parent424e98f6a896df6a848a92ef318464abc505d83d (diff)
downloadtangerine-wallet-browser-d8788af9b867cebcc702384b780cc06a06f9d33b.tar.gz
tangerine-wallet-browser-d8788af9b867cebcc702384b780cc06a06f9d33b.tar.zst
tangerine-wallet-browser-d8788af9b867cebcc702384b780cc06a06f9d33b.zip
Merge branch 'master' into retry-tx-refractor
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 9708a2485..954299a6a 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -329,12 +329,14 @@ App.prototype.renderAppBar = function () {
]),
]),
- !isInitialized && !isPopup && betaUI && h('h2', {
- className: classnames({
- 'alpha-warning': welcomeScreenSeen,
- 'alpha-warning-welcome-screen': !welcomeScreenSeen,
- }),
- }, 'Please be aware that this version is still under development'),
+ !isInitialized && !isPopup && betaUI && h('.alpha-warning__container', {}, [
+ h('h2', {
+ className: classnames({
+ 'alpha-warning': welcomeScreenSeen,
+ 'alpha-warning-welcome-screen': !welcomeScreenSeen,
+ }),
+ }, 'Please be aware that this version is still under development'),
+ ]),
])
)