export function measureSpace(anchor) {
    const rect = anchor.getBoundingClientRect();
    return {
        above: rect.top,
        below: window.innerHeight - rect.bottom
    };
}
