fix(List): element with overflow: overlay style should be considered a scroll container (#10743)

This commit is contained in:
AmazingPromise 2022-06-25 11:44:11 +08:00 committed by chenjiahan
parent 2c2cdd077f
commit e61d85a890

View File

@ -3,7 +3,7 @@ import { inBrowser } from '../utils';
type ScrollElement = HTMLElement | Window;
const overflowScrollReg = /scroll|auto/i;
const overflowScrollReg = /scroll|auto|overlay/i;
const defaultRoot = inBrowser ? window : undefined;
function isElement(node: Element) {