aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/assets/index.html
blob: fbfb7f004e1445d8527bccc2c4eb24fc1c82573b (plain) (blame)
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
<!DOCTYPE html>
<html lang="en" style="height: 100%">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Go Ethereum Dashboard</title>
        <link rel="shortcut icon" type="image/ico" href="https://ethereum.org/favicon.ico" />
        <style>
            ::-webkit-scrollbar {
                width: 16px;
            }
            ::-webkit-scrollbar-thumb {
                background: #212121;
            }
            ::-webkit-scrollbar-corner {
                background: transparent;
            }
        </style>
    </head>
    <body style="height: 100%; margin: 0">
        <div id="dashboard" style="height: 100%"></div>
        <script type="text/javascript" src="bundle.js"></script>
    </body>
</html>