summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/signin/sync_confirmation/sync_confirmation.html
blob: 328bfda7c42a85b719eece08f4f9cec30f08281f (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
<!doctype html>
<html dir="$i18n{textdirection}" lang="$i18n{language}">
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
    <script type="module" src="sync_confirmation_app.js"></script>
    <style>
      body {
        margin: 0;
        padding: 0;
        width: 512px;
      }
      @media (prefers-color-scheme: dark) {
        body {
          background-color: var(--md-background-color);
        }
      }
    </style>
  </head>
  <body>
    <sync-confirmation-app></sync-confirmation-app>
  </body>
  <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
  <script type="module" src="sync_confirmation.js"></script>
</html>