1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-15 18:41:12 +00:00

root -> trezor-wallet-root

This commit is contained in:
Vladimir Volek 2018-10-30 13:26:00 +01:00
parent 9f1f1df834
commit 2b5c932d89
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
</head>
<body>
<!--[if lt IE 8]>
<div class="unsupported-browsers">
<div class="unsupported-browsers">
<div class="header"></div>
<h1>Your browser is not supported</h1>
<p>Please choose one of the supported browsers</p>
@ -33,6 +33,6 @@
</div>
</div>
<![endif]-->
<div id="root"></div>
<div id="trezor-wallet-root"></div>
</body>
</html>

View File

@ -4,7 +4,7 @@ import { render } from 'react-dom';
import baseStyles from 'support/styles';
import App from 'views/index';
const root: ?HTMLElement = document.getElementById('root');
const root: ?HTMLElement = document.getElementById('trezor-wallet-root');
if (root) {
baseStyles();
render(<App />, root);

View File

@ -44,7 +44,7 @@ const baseStyles = () => injectGlobal`
outline: 0;
}
#root {
#trezor-wallet-root {
height: 100%;
}