1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix html height

This commit is contained in:
Chi Kei Chan 2017-09-05 23:33:41 -07:00
parent 06b2a04a42
commit bffdde2082

View File

@ -1,11 +1,11 @@
<!doctype html> <!doctype html>
<html> <html style="width:350px; height:600px;">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1 user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1 user-scalable=no">
<title>MetaMask Plugin</title> <title>MetaMask Plugin</title>
</head> </head>
<body style="width:350px; height:500px;"> <body style="width:350px; height:600px;">
<div id="app-content"></div> <div id="app-content"></div>
<script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script> <script src="./scripts/popup.js" type="text/javascript" charset="utf-8"></script>
</body> </body>