Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active October 3, 2018 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/120ffc136bf24cdc1c60195cb51e0502 to your computer and use it in GitHub Desktop.
Save productioncoder/120ffc136bf24cdc1c60195cb51e0502 to your computer and use it in GitHub Desktop.
AppLayout
import React from 'react';
import './AppLayout.scss';
import HeaderNav from '../../containers/HeaderNav/HeaderNav';
export function AppLayout(props) {
return (
<div className='app-layout'>
<HeaderNav/>
{props.children}
</div>
);
}
@import '../../styles/shared.scss';
.app-layout {
& > *:not(:first-child) {
margin-top: $header-nav-height;
}
::-webkit-scrollbar {
width: 6px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment