Skip to content

Commit

Permalink
[Fix]모달창 위치 조정
Browse files Browse the repository at this point in the history
회원가입, 로그인 모달창의 z-index를 4000으로 설정
다른 모든 모달 창보다 앞에 위치하도록 변경
Issues #15
  • Loading branch information
김병현 authored and 김병현 committed Sep 16, 2023
1 parent 648501e commit 467ad0e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/components/Logins/EmailLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ const ModalBackground = styled.div`
`;

const ModalContainer = styled.div`
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Logins/LoginConfirmatationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ const ModalBackground = styled.div`
`;

const ModalContainer = styled.div`
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Logins/OAuthLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const ModalBackground = styled.div`
`;

const ModalContainer = styled.div`
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
Expand Down
3 changes: 2 additions & 1 deletion client/src/components/Signups/EmailCertify.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ const ModalBackground = styled.div`

// 모달의 컨테이너 스타일
const ModalContainer = styled.div`
position: relative;
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
width: 400px;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Signups/EmailSignup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ const ModalBackground = styled.div`

//모달 컨테이너
const ModalContainer = styled.div`
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Signups/Password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ const ModalBackground = styled.div`

// 모달 컨테이너 스타일
const ModalContainer = styled.div`
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Signups/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const ModalBackground = styled.div`
`;

const ModalContainer = styled.div`
z-index:4000;
position: relative;
background-color: white;
padding: 20px;
Expand Down

0 comments on commit 467ad0e

Please sign in to comment.