diff options
author | Kurkó Mihály <kurkomisi@users.noreply.github.com> | 2018-03-08 16:22:21 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-03-08 16:22:21 +0800 |
commit | 704840a8ad9e75d4a00e734f901cac21c51b7eb5 (patch) | |
tree | e2b012c052986bb40053f09394aefb5c23474a5a /dashboard/assets/index.html | |
parent | 3ec1b9a92dc09ff33f6fae2e8daa7862d4c51bb1 (diff) | |
download | go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.gz go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.bz2 go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.lz go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.xz go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.zst go-tangerine-704840a8ad9e75d4a00e734f901cac21c51b7eb5.zip |
cmd, dashboard: use webpack dev server, remove custom assets (#16263)
* cmd, dashboard: remove custom assets, webpack dev server
* dashboard: yarn commands, small fixes
Diffstat (limited to 'dashboard/assets/index.html')
-rw-r--r-- | dashboard/assets/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dashboard/assets/index.html b/dashboard/assets/index.html new file mode 100644 index 000000000..2491bf1ea --- /dev/null +++ b/dashboard/assets/index.html @@ -0,0 +1,23 @@ +<!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; + } + </style> + </head> + <body style="height: 100%; margin: 0"> + <div id="dashboard" style="height: 100%"></div> + <script src="bundle.js"></script> + </body> +</html> |