aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Dubik <anton.dubik33@gmail.com>2020-01-12 23:59:39 +0300
committerGitHub <noreply@github.com>2020-01-12 23:59:39 +0300
commitfc7778fea929d27057d5803e4d24e647dbc13bbd (patch)
treee1218fbc9abeed4dcc49a3ea01e4d1d6bdff6f2f /src
parent115af109fef73fc57d8d1c463ff0a465b953cafc (diff)
parent2150109c9e334f6e247a6a889e7260a2cca73068 (diff)
downloadchrono-cube-ui-fc7778fea929d27057d5803e4d24e647dbc13bbd.tar.gz
Merge pull request #39 from Eug-VS/scrollbar-blink
fix: remove blinking scrollbar
Diffstat (limited to 'src')
-rw-r--r--src/components/SmartList/SmartList.js2
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