aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-07-27 05:36:22 +0800
committerDan Finlay <dan@danfinlay.com>2017-07-27 05:36:22 +0800
commit8fc0a025f62722e9cced11e22600e0093e64e4f5 (patch)
tree785194510ac93844c05fef913c71bbc817b70726
parentbc11f11d6865de0950d9ab10e8f37f74519b824e (diff)
downloadtangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.gz
tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.tar.zst
tangerine-wallet-browser-8fc0a025f62722e9cced11e22600e0093e64e4f5.zip
Set initial scale for mobile.
-rw-r--r--app/popup.html3
-rw-r--r--ui/app/components/transaction-list.js4
-rw-r--r--ui/app/css/index.css2
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 {