summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/pwa/wallet.html
blob: 366615dff96c74b4f922d7b86e8189f353f6bef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
  <head>
    <meta charset="utf-8" />
    <link rel="stylesheet" type="text/css" href="walletEntryPoint.dev.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 type="module" src="walletEntryPoint.dev.js"></script>
  </head>

  <body>
    <div id="container" class="wallet-container"></div>
  </body>
</html>