1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Set initial scale for mobile.

This commit is contained in:
Dan Finlay 2017-07-26 14:36:22 -07:00
parent bc11f11d68
commit 8fc0a025f6
3 changed files with 6 additions and 3 deletions

View File

@ -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>
</html>

View File

@ -75,7 +75,9 @@ TransactionList.prototype.render = function () {
},
}, [
h('p', {
marginTop: '50px',
style: {
marginTop: '50px',
},
}, 'No transaction history.'),
]),
]),

View File

@ -26,7 +26,7 @@ html, body {
}
html {
min-height: 400px;
min-height: 500px;
}
.app-root {