diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-07-27 05:36:22 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-07-27 05:36:22 +0800 |
commit | 8fc0a025f62722e9cced11e22600e0093e64e4f5 (patch) | |
tree | 785194510ac93844c05fef913c71bbc817b70726 | |
parent | bc11f11d6865de0950d9ab10e8f37f74519b824e (diff) | |
download | tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.gz tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.bz2 tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.lz tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.xz tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.zst tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.zip |
Set initial scale for mobile.
-rw-r--r-- | app/popup.html | 3 | ||||
-rw-r--r-- | ui/app/components/transaction-list.js | 4 | ||||
-rw-r--r-- | ui/app/css/index.css | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/app/popup.html b/app/popup.html index 6d85a9811..2504a2512 100644 --- a/app/popup.html +++ b/app/popup.html @@ -2,10 +2,11 @@ <html> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=0.95"> <title>MetaMask Plugin</title> </head> <body> <div id="app-content"></div> <script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script> </body> -</html>
\ No newline at end of file +</html> diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js index 192931486..69b72614c 100644 --- a/ui/app/components/transaction-list.js +++ b/ui/app/components/transaction-list.js @@ -75,7 +75,9 @@ TransactionList.prototype.render = function () { }, }, [ h('p', { - marginTop: '50px', + style: { + marginTop: '50px', + }, }, 'No transaction history.'), ]), ]), diff --git a/ui/app/css/index.css b/ui/app/css/index.css index 00d4bea93..05bdb33af 100644 --- a/ui/app/css/index.css +++ b/ui/app/css/index.css @@ -26,7 +26,7 @@ html, body { } html { - min-height: 400px; + min-height: 500px; } .app-root { |