UNPKG

@zohodesk/hooks

Version:

Unified Component Library - Hooks

9 lines (8 loc) 179 B
export default function isFixedElement(element) { let style = getComputedStyle(element); if (style.position === 'fixed') { return true; } else { return false; } }