diff --git a/src/components/GlobalHeader.module.scss b/src/components/GlobalHeader.module.scss index 5978ba7e3..8f1bd2fdf 100644 --- a/src/components/GlobalHeader.module.scss +++ b/src/components/GlobalHeader.module.scss @@ -124,7 +124,7 @@ @media screen and (max-width: 1240px) { .global-header-container { - padding: 0 1rem; + padding: 0 1.75rem; } } diff --git a/src/components/Layout.js b/src/components/Layout.js index 857496e05..d2d0bcc42 100644 --- a/src/components/Layout.js +++ b/src/components/Layout.js @@ -3,16 +3,17 @@ import PropTypes from 'prop-types'; import Footer from './Footer'; import GlobalHeader from './GlobalHeader'; +import MobileHeader from './MobileHeader'; import Sidebar from './Sidebar'; import styles from './Layout.module.scss'; -import pages from '../data/sidenav.json'; import './styles.scss'; const Layout = ({ children }) => ( <> +
- +
{children}