wallet-core/packages/taler-wallet-webextension/static/wallet.html

32 lines
686 B
HTML
Raw Normal View History

2021-06-16 22:01:06 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2021-08-23 21:51:49 +02:00
<link rel="stylesheet" type="text/css" href="/dist/popupEntryPoint.css" />
2021-06-16 22:01:06 +02:00
<link rel="icon" href="/static/img/icon.png" />
<script src="/dist/walletEntryPoint.js"></script>
2021-11-16 17:59:53 +01:00
<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>
2021-06-16 22:01:06 +02:00
</head>
<body>
<div id="container" class="wallet-container"></div>
2021-06-16 22:01:06 +02:00
</body>
</html>