Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 943-audit-avt1-homepage-content-not-in-landmark #944

Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,19 @@ const Container = ({ children, homepage, theme }) => {

return (
<>
<span hidden id="overlay-label">
Collapse navigation items
</span>
<div
role="button"
aria-labelledby="overlay-label"
tabIndex="0"
className={cx(overlay, { [visible]: overlayVisible })}
onClick={closeNavs}
onKeyPress={closeNavs}
role="presentation"
tabIndex="-1"
/>
<main
id="main-content"
role="presentation" // needed for jsx-a11y/no-noninteractive-element-interactions
onClick={closeNavs}
onKeyPress={closeNavs}
aria-hidden={overlayVisible}
className={containerClassNames}>
{children}
Expand Down