Navigation Menu

Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
msal4 committed Mar 9, 2019
1 parent dd9eeb0 commit 6875f39
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/layouts/index.js
Expand Up @@ -28,14 +28,14 @@ const footerRule = css({
marginBottom: '10px',
});

const announcementRule = css({
textAlign: 'center',
backgroundColor: '#ecf0f1',
// color: 'white',
padding: '5px',
borderRadius: '5px',
boxShadow: '4px 4px rgba(0, 0, 255, .2)'
});
// const announcementRule = css({
// textAlign: 'center',
// backgroundColor: '#ecf0f1',
// // color: 'white',
// padding: '5px',
// borderRadius: '5px',
// boxShadow: '4px 4px rgba(0, 0, 255, .2)'
// });
export default ({ children, data }) => (
<div {...containerRule}>
<Helmet
Expand Down Expand Up @@ -75,7 +75,7 @@ export default ({ children, data }) => (
<html lang="en" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</Helmet>
<p {...announcementRule}>The site is under development🛠</p>
// <p {...announcementRule}>The site is under development🛠</p>
<Header data={data} />
{children()}
<footer {...footerRule}>
Expand All @@ -92,4 +92,4 @@ export const query = graphql`
}
}
}
`;
`;

0 comments on commit 6875f39

Please sign in to comment.