From 42f3fef67dbfe5230b0e590d33f3899cb948e5e2 Mon Sep 17 00:00:00 2001 From: Travis Arnold Date: Thu, 13 Sep 2018 10:24:15 -0700 Subject: [PATCH] Remove overflow:hidden from inner container --- src/createGridComponent.js | 1 - src/createListComponent.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/createGridComponent.js b/src/createGridComponent.js index 4a277056..bd86c165 100644 --- a/src/createGridComponent.js +++ b/src/createGridComponent.js @@ -345,7 +345,6 @@ export default function createGridComponent({ ref: innerRef, style: { height: estimatedTotalHeight, - overflow: 'hidden', pointerEvents: isScrolling ? 'none' : '', width: estimatedTotalWidth, }, diff --git a/src/createListComponent.js b/src/createListComponent.js index 71f764ac..19bc96c5 100644 --- a/src/createListComponent.js +++ b/src/createListComponent.js @@ -282,7 +282,6 @@ export default function createListComponent({ ref: innerRef, style: { height: direction === 'horizontal' ? '100%' : estimatedTotalSize, - overflow: 'hidden', pointerEvents: isScrolling ? 'none' : '', width: direction === 'horizontal' ? estimatedTotalSize : '100%', },