diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-07 22:34:49 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-07 22:34:49 +0300 |
commit | d66419438a83e564583e1e8c28ed6c80d89f5648 (patch) | |
tree | 1b9c5a206f8b1e91f90600415fbe6bfffc62f05d /src/index.js | |
parent | 4931f205e1250c649b3a48b96a7823a9d52615ff (diff) | |
download | chrono-cube-ui-d66419438a83e564583e1e8c28ed6c80d89f5648.tar.gz |
Implement SmartList component, hide body overflow
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index 07c50bc..431e139 100644 --- a/src/index.js +++ b/src/index.js @@ -13,7 +13,6 @@ import Scoreboard from "./components/Scoreboard/Scoreboard"; const useStyles = makeStyles(theme => ({ root: { - padding: theme.spacing(2), }, })); @@ -57,4 +56,5 @@ const App = () => { ); }; +document.body.style.overflow = "hidden"; ReactDOM.render(<App />, document.getElementById('root')); |