aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 {