Skip to content

Commit

Permalink
[#2] Feat Header
Browse files Browse the repository at this point in the history
- box-shadow css추가
- MyInfo 이미지의 background 변경
  • Loading branch information
JoGeumJu committed Jan 31, 2023
1 parent 94bcf08 commit f0ef8bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/components/header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import styled from "styled-components";
import { customColor } from "../customColor";
import { HeaderMenu } from "./HeaderMenu";
import { HeaderTitle } from "./HeaderTitle";

Expand All @@ -13,6 +14,8 @@ export const Header = () => {

const Wrapper = styled.section`
display: flex;
z-index: 5;
flex-direction: column;
width: 100%;
box-shadow: 0px 4px 4px 0px ${customColor.black + "33"};
`;
2 changes: 1 addition & 1 deletion src/components/header/components/MyInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Img = styled.div`
position: absolute;
width: 100%;
height: 100%;
background: ${customColor.lightGray};
background: ${customColor.gray};
border-radius: 50%;
`;
const LogAction = styled.div<ButtonProps>`
Expand Down

0 comments on commit f0ef8bb

Please sign in to comment.