diff options
author | Kurkó Mihály <kurkomisi@users.noreply.github.com> | 2017-12-21 23:54:38 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-12-21 23:54:38 +0800 |
commit | 9dbb8ef4aadb8e40aef8b681cf86acd20789abdc (patch) | |
tree | c020de9b45dffa878b1422dce147d9343ed8b59b /dashboard/assets/public/dashboard.html | |
parent | 52f4d6dd7891191a494f37faa6bce664e202da66 (diff) | |
download | go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.tar go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.tar.gz go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.tar.bz2 go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.tar.lz go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.tar.xz go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.tar.zst go-tangerine-9dbb8ef4aadb8e40aef8b681cf86acd20789abdc.zip |
dashboard: integrate Flow, sketch message API (#15713)
* dashboard: minor design change
* dashboard: Flow integration, message API
* dashboard: minor polishes, exclude misspell linter
Diffstat (limited to 'dashboard/assets/public/dashboard.html')
-rw-r--r-- | dashboard/assets/public/dashboard.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dashboard/assets/public/dashboard.html b/dashboard/assets/public/dashboard.html index e064a2b51..2491bf1ea 100644 --- a/dashboard/assets/public/dashboard.html +++ b/dashboard/assets/public/dashboard.html @@ -6,9 +6,15 @@ <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"/> - - <!-- TODO (kurkomisi): Return to the external libraries to speed up the bundling during development --> + <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> |