Files
rowy/src/utils/ui.ts
Sidney Alcantara dd0164b1ef add CloudLogs
2022-06-01 21:52:04 +10:00

6 lines
225 B
TypeScript

export const isTargetInsideBox = (target: Element, box: Element) => {
const targetRect = target.getBoundingClientRect();
const boxRect = box.getBoundingClientRect();
return targetRect.y < boxRect.y + boxRect.height;
};