From 136e73d77082c4c9f5476063f4e6ee8f07710d1f Mon Sep 17 00:00:00 2001 From: Kata Date: Wed, 20 Mar 2019 00:25:20 -0500 Subject: [PATCH] fix missing prop for HeaderCommon --- ui/components/header/auth.js | 2 +- ui/components/header/common.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/components/header/auth.js b/ui/components/header/auth.js index a1861cc..3414782 100644 --- a/ui/components/header/auth.js +++ b/ui/components/header/auth.js @@ -73,7 +73,7 @@ const StyledUserSection = styled(UserSection)` ` const HeaderBarAuth: React.StatelessFunctionalComponent<{ user: User }> = ({ user }) => ( - + <> diff --git a/ui/components/header/common.js b/ui/components/header/common.js index b5c49f2..790f6e4 100644 --- a/ui/components/header/common.js +++ b/ui/components/header/common.js @@ -17,6 +17,7 @@ const Header = styled.div` top: 0; left: 0; right: 0; + z-index: 100; ` const HeaderInner = styled.div`