diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-12 23:42:03 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-12 23:42:03 +0300 |
commit | 2150109c9e334f6e247a6a889e7260a2cca73068 (patch) | |
tree | d66be2a3ca69e6c10919560116834fa8923e752c | |
parent | 1c73d3cd0f78a5c01c9819f016838d188d3cf63f (diff) | |
download | chrono-cube-ui-2150109c9e334f6e247a6a889e7260a2cca73068.tar.gz |
fix: remove blinking scrollbar
-rw-r--r-- | src/components/SmartList/SmartList.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SmartList/SmartList.js b/src/components/SmartList/SmartList.js index 68235a2..b462c47 100644 --- a/src/components/SmartList/SmartList.js +++ b/src/components/SmartList/SmartList.js @@ -7,7 +7,7 @@ import AutoSizer from 'react-virtualized-auto-sizer'; const SmartList = ({ itemSize, itemCount, renderItem }) => { return ( - <div style={{ flex: '1 1 auto'}}> + <div style={{ flex: '1 1 auto', overflow: 'hidden' }}> <AutoSizer> {({ width, height }) => ( <FixedSizeList |