diff --git a/packages/gatsby-theme-aio/src/components/Layout/index.js b/packages/gatsby-theme-aio/src/components/Layout/index.js index 8f8238f2df..ad5d2a319d 100644 --- a/packages/gatsby-theme-aio/src/components/Layout/index.js +++ b/packages/gatsby-theme-aio/src/components/Layout/index.js @@ -268,8 +268,7 @@ export default ({ children, pageContext, location }) => { } const frontMatter = pageContext?.frontmatter; - const hasLayout = pageContext?.frontmatter?.layout !== 'none'; - + const layoutId = nextId(); const sideNavId = nextId(); @@ -409,10 +408,9 @@ export default ({ children, pageContext, location }) => { grid-template-rows: var(--spectrum-global-dimension-size-800); grid-template-columns: ${hasSideNav ? `${SIDENAV_WIDTH} auto` : '0 auto'}; - ${hasLayout && - `@media screen and (max-width: ${DESKTOP_SCREEN_WIDTH}) { - grid-template-columns: 0px auto; - }`} + @media screen and (max-width: ${DESKTOP_SCREEN_WIDTH}) { + grid-template-columns: 0px auto; + } `}>