Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure PageHeader will sit above other items #110

Merged
merged 1 commit into from
Nov 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions components/page-header/src/__snapshots__/test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

exports[`PageHeaderExample renders the storybook example 1`] = `
.emotion-30 {
position: relative;
width: 100%;
color: #ffffff;
background: #0b0c0c;
z-index: 100;
}

.emotion-28 {
Expand Down
2 changes: 2 additions & 0 deletions components/page-header/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ import LogoAnchor from './atoms/logo-anchor';
import NavAnchor from './atoms/nav-anchor';

const StyledPageHeader = styled('header')({
position: 'relative',
width: '100%',
color: WHITE,
background: BLACK,
zIndex: 100,
});

const InnerContainer = styled('div')({
Expand Down