diff options
author | sdtsui <szehungdanieltsui@gmail.com> | 2017-07-31 10:52:27 +0800 |
---|---|---|
committer | sdtsui <szehungdanieltsui@gmail.com> | 2017-07-31 10:52:27 +0800 |
commit | dd3766242dcdfd334f79367793d2b27bfcc36eb6 (patch) | |
tree | 41ff0810772a0e6009596cc8cab5e1bcfbc7444c | |
parent | a7ab69b940e91aea4362c3c0bf9e9f3efb7c76c9 (diff) | |
download | tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.tar tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.tar.gz tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.tar.bz2 tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.tar.lz tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.tar.xz tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.tar.zst tangerine-wallet-browser-dd3766242dcdfd334f79367793d2b27bfcc36eb6.zip |
Adjust dimensions of popup.html and app bar to match
-rw-r--r-- | app/notification.html | 2 | ||||
-rw-r--r-- | app/popup.html | 2 | ||||
-rw-r--r-- | ui/app/app.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/notification.html b/app/notification.html index cc485da7f..be38f4aa3 100644 --- a/app/notification.html +++ b/app/notification.html @@ -9,7 +9,7 @@ } </style> </head> - <body> + <body style="width:350px; height:500px;"> <div id="app-content"></div> <script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script> </body> diff --git a/app/popup.html b/app/popup.html index d09b09315..471468b13 100644 --- a/app/popup.html +++ b/app/popup.html @@ -5,7 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1 user-scalable=no"> <title>MetaMask Plugin</title> </head> - <body style="width:357px; height:500px;"> + <body style="width:800px; height:600px;"> <div id="app-content"></div> <script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script> </body> diff --git a/ui/app/app.js b/ui/app/app.js index 0f26f8add..7f844560c 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -121,7 +121,7 @@ App.prototype.renderAppBar = function () { alignItems: 'center', visibility: props.isUnlocked ? 'visible' : 'none', background: '#EFEFEF', // $gallery - height: '38px', + height: '11%', position: 'relative', zIndex: 12, }, |