diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-07-30 04:31:53 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-07-30 04:31:53 +0800 |
commit | c0483fc230ec1893f15c6f8994f63e318474846e (patch) | |
tree | b2dff817b3fc2fece892ce75bc9ecf845bfe091d /ui/app/app.js | |
parent | 8c5be547228c9801ab616beb5054b888509463f9 (diff) | |
download | tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.tar tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.tar.gz tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.tar.bz2 tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.tar.lz tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.tar.xz tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.tar.zst tangerine-wallet-browser-c0483fc230ec1893f15c6f8994f63e318474846e.zip |
Add token logo to send screen
Diffstat (limited to 'ui/app/app.js')
-rw-r--r-- | ui/app/app.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 6537e2f56..2eb037460 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -171,6 +171,16 @@ App.prototype.renderAppBar = function () { ]), ]), + + h('.app-header', { + style: { + visibility: props.isUnlocked ? 'visible' : 'none', + background: '#EFEFEF', // $gallery + height: '38px', + position: 'relative', + zIndex: 12, + }, + }) ]) ) } |