Skip to content

Commit

Permalink
fix(container): wrap page content in main HTML5 sectioning element (#564
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jendowns authored and vpicone committed Nov 25, 2019
1 parent 9867e2b commit 7aa2575
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const Container = ({ children, homepage, theme }) => {
role="presentation"
tabIndex="-1"
/>
<div aria-hidden={overlayVisible} className={containerClassNames}>
<main aria-hidden={overlayVisible} className={containerClassNames}>
{children}
</div>
</main>
</>
);
};
Expand Down

0 comments on commit 7aa2575

Please sign in to comment.