sdy

remove header position fixed

...@@ -17,8 +17,6 @@ const HeaderContainer = styled.div` ...@@ -17,8 +17,6 @@ const HeaderContainer = styled.div`
17 flex-direction: row; 17 flex-direction: row;
18 justify-content: space-between; 18 justify-content: space-between;
19 width: 100%; 19 width: 100%;
20 - position: fixed;
21 - top: 0;
22 svg { 20 svg {
23 font-size: 30px; 21 font-size: 30px;
24 } 22 }
...@@ -51,7 +49,7 @@ const StyledLink = styled(Link)` ...@@ -51,7 +49,7 @@ const StyledLink = styled(Link)`
51 export default ({ text }) => { 49 export default ({ text }) => {
52 const [logOut] = useMutation(LOG_OUT); 50 const [logOut] = useMutation(LOG_OUT);
53 return ( 51 return (
54 - <HeaderContainer> 52 + <HeaderContainer className="Header">
55 <TitleBox> 53 <TitleBox>
56 <FontAwesomeIcon icon={faComments} /> 54 <FontAwesomeIcon icon={faComments} />
57 <HeaderSpan>{text}</HeaderSpan> 55 <HeaderSpan>{text}</HeaderSpan>
......