fixed scroll into view to scroll to top

This commit is contained in:
2024-02-09 10:42:38 +01:00
parent 6ab0d4321e
commit f2d44190e8

View File

@@ -25,7 +25,7 @@ export const MonthCard:FC<MonthCardProps> = ({ yearMonth, children, monthlyExpen
useEffect(() => {
if(expanded && elRef.current) {
// if the element i selected > scroll it into view
elRef.current.scrollIntoView({ behavior: 'smooth', block: 'center' });
elRef.current.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}, [expanded]);