scroll nav elements into view when using the keyboard (#50434)

This commit is contained in:
Ashley Harrison 2022-06-09 09:07:15 +01:00 committed by GitHub
parent cf684ed38f
commit 3fa7f72d6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,6 +173,9 @@ export function NavBarItemMenuTrigger(props: NavBarItemMenuTriggerProps): ReactE
setMenuIdOpen(item.id);
state.open();
}
e.target.scrollIntoView({
block: 'nearest',
});
},
onBlurWithin: (e) => {
if (e.target?.getAttribute('role') === 'menuitem' && !overlayRef.current?.contains(e.relatedTarget)) {