wallet-core/packages/taler-wallet-webextension/dev-html/wallet.html
2022-03-25 16:58:00 -03:00

30 lines
623 B
HTML

<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="/dist/walletEntryPoint.css" />
<style>
html {
font-family: sans-serif; /* 1 */
}
h1 {
font-size: 2em;
}
input {
font: inherit;
}
body {
margin: 0;
font-size: 100%;
padding: 0;
background-color: #f8faf7;
font-family: Arial, Helvetica, sans-serif;
}
</style>
<script src="/dist/walletEntryPoint.dev.js"></script>
</head>
<body>
<div id="container" class="wallet-container"></div>
</body>
</html>