aboutsummaryrefslogtreecommitdiff
path: root/src/components/SmartList
diff options
context:
space:
mode:
authorEug-VS <eug-vs@keemail.me>2020-01-11 20:11:29 +0300
committerEug-VS <eug-vs@keemail.me>2020-01-11 20:11:29 +0300
commit0328a41d0fbb76fbb805610376b1c607faf60730 (patch)
treeb22a2c70c45823642f5365bbf51bb4d54c2fdaa8 /src/components/SmartList
parent02ddc8f3ed6858521480a3c3928f50ff40f34501 (diff)
downloadchrono-cube-ui-0328a41d0fbb76fbb805610376b1c607faf60730.tar.gz
Add overflow and scrollbar color to WindowSurface
Diffstat (limited to 'src/components/SmartList')
-rw-r--r--src/components/SmartList/SmartList.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/components/SmartList/SmartList.js b/src/components/SmartList/SmartList.js
index 975cbbd..68235a2 100644
--- a/src/components/SmartList/SmartList.js
+++ b/src/components/SmartList/SmartList.js
@@ -3,18 +3,8 @@ import React from 'react';
import { FixedSizeList } from 'react-window';
import AutoSizer from 'react-virtualized-auto-sizer';
-import { makeStyles } from '@material-ui/core';
-
-
-const useStyles = makeStyles(theme => ({
- root: {
- scrollbarColor: `${theme.palette.primary.dark} ${theme.palette.primary.light}`,
- }
-}));
-
const SmartList = ({ itemSize, itemCount, renderItem }) => {
- const classes = useStyles();
return (
<div style={{ flex: '1 1 auto'}}>
@@ -25,7 +15,6 @@ const SmartList = ({ itemSize, itemCount, renderItem }) => {
width={width}
itemSize={itemSize}
itemCount={itemCount}
- className={classes.root}
>
{renderItem}
</FixedSizeList>