Skip to content

Commit 56705d1

Browse files
authored
Merge pull request #38 from team-aliens/refactor/37-웹뷰-배경색-수정
chore : 배경색상 변경
2 parents 67b445b + b610de6 commit 56705d1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/Volunteer/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const Wrapper = styled.div<{ Theme: THEME }>`
5858
left: 0;
5959
width: 100%;
6060
background-color: ${({ Theme }) =>
61-
Theme === THEME.LIGHT ? '#F2F2F7' : '#242424'};
61+
Theme === THEME.LIGHT ? '#FFFFFF' : '#242424'};
6262
z-index: 1000;
6363
`;
6464

src/pages/Volunteer/Application.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const ContentWrapper = styled.div<{ Theme: THEME }>`
8181
width: 100%;
8282
min-height: 100vh;
8383
background-color: ${({ Theme }) =>
84-
Theme === THEME.LIGHT ? '#F2F2F7' : '#242424'};
84+
Theme === THEME.LIGHT ? '#FFFFFF' : '#242424'};
8585
`;
8686

8787
const ContentContainer = styled.div`

src/pages/Volunteer/History.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const ContentWrapper = styled.div<{ Theme: THEME }>`
7272
width: 100%;
7373
min-height: 100vh;
7474
background-color: ${({ Theme }) =>
75-
Theme === THEME.LIGHT ? '#F2F2F7' : '#242424'};
75+
Theme === THEME.LIGHT ? '#FFFFFF' : '#242424'};
7676
`;
7777

7878
const ContentContainer = styled.div`

0 commit comments

Comments
 (0)