UNPKG

@sanity/assist

Version:

You create the instructions; Sanity AI Assist does the rest.

6 lines (4 loc) 211 B
export function hasOverflowScroll(el: HTMLElement): boolean { const overflow = getComputedStyle(el).overflow return overflow.includes('auto') || overflow.includes('hidden') || overflow.includes('scroll') }