From 467ad0e772e0b84764c8c7e6e4bde1282973ddfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=91=ED=98=84?= Date: Sat, 16 Sep 2023 18:31:29 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=EB=AA=A8=EB=8B=AC=EC=B0=BD=20=EC=9C=84?= =?UTF-8?q?=EC=B9=98=20=EC=A1=B0=EC=A0=95=20=ED=9A=8C=EC=9B=90=EA=B0=80?= =?UTF-8?q?=EC=9E=85,=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=AA=A8=EB=8B=AC?= =?UTF-8?q?=EC=B0=BD=EC=9D=98=20z-index=EB=A5=BC=204000=EC=9C=BC=EB=A1=9C?= =?UTF-8?q?=20=EC=84=A4=EC=A0=95=20=EB=8B=A4=EB=A5=B8=20=EB=AA=A8=EB=93=A0?= =?UTF-8?q?=20=EB=AA=A8=EB=8B=AC=20=EC=B0=BD=EB=B3=B4=EB=8B=A4=20=EC=95=9E?= =?UTF-8?q?=EC=97=90=20=EC=9C=84=EC=B9=98=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20Issues=20#15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/Logins/EmailLogin.tsx | 1 + client/src/components/Logins/LoginConfirmatationModal.tsx | 1 + client/src/components/Logins/OAuthLogin.tsx | 1 + client/src/components/Signups/EmailCertify.tsx | 3 ++- client/src/components/Signups/EmailSignup.tsx | 1 + client/src/components/Signups/Password.tsx | 1 + client/src/components/Signups/Welcome.tsx | 1 + 7 files changed, 8 insertions(+), 1 deletion(-) diff --git a/client/src/components/Logins/EmailLogin.tsx b/client/src/components/Logins/EmailLogin.tsx index df5e4bed..549b24cc 100644 --- a/client/src/components/Logins/EmailLogin.tsx +++ b/client/src/components/Logins/EmailLogin.tsx @@ -99,6 +99,7 @@ const ModalBackground = styled.div` `; const ModalContainer = styled.div` + z-index:4000; position: relative; background-color: white; padding: 20px; diff --git a/client/src/components/Logins/LoginConfirmatationModal.tsx b/client/src/components/Logins/LoginConfirmatationModal.tsx index 38b263e1..f4675ee5 100644 --- a/client/src/components/Logins/LoginConfirmatationModal.tsx +++ b/client/src/components/Logins/LoginConfirmatationModal.tsx @@ -37,6 +37,7 @@ const ModalBackground = styled.div` `; const ModalContainer = styled.div` + z-index:4000; position: relative; background-color: white; padding: 20px; diff --git a/client/src/components/Logins/OAuthLogin.tsx b/client/src/components/Logins/OAuthLogin.tsx index 40a63266..7a3aa809 100644 --- a/client/src/components/Logins/OAuthLogin.tsx +++ b/client/src/components/Logins/OAuthLogin.tsx @@ -64,6 +64,7 @@ const ModalBackground = styled.div` `; const ModalContainer = styled.div` + z-index:4000; position: relative; background-color: white; padding: 20px; diff --git a/client/src/components/Signups/EmailCertify.tsx b/client/src/components/Signups/EmailCertify.tsx index 327e449d..d2a7f218 100644 --- a/client/src/components/Signups/EmailCertify.tsx +++ b/client/src/components/Signups/EmailCertify.tsx @@ -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; diff --git a/client/src/components/Signups/EmailSignup.tsx b/client/src/components/Signups/EmailSignup.tsx index 16a9aa9d..ed986ea0 100644 --- a/client/src/components/Signups/EmailSignup.tsx +++ b/client/src/components/Signups/EmailSignup.tsx @@ -108,6 +108,7 @@ const ModalBackground = styled.div` //모달 컨테이너 const ModalContainer = styled.div` + z-index:4000; position: relative; background-color: white; padding: 20px; diff --git a/client/src/components/Signups/Password.tsx b/client/src/components/Signups/Password.tsx index 01c13aa0..25ec5b01 100644 --- a/client/src/components/Signups/Password.tsx +++ b/client/src/components/Signups/Password.tsx @@ -147,6 +147,7 @@ const ModalBackground = styled.div` // 모달 컨테이너 스타일 const ModalContainer = styled.div` + z-index:4000; position: relative; background-color: white; padding: 20px; diff --git a/client/src/components/Signups/Welcome.tsx b/client/src/components/Signups/Welcome.tsx index 057c9b37..a20ca6f2 100644 --- a/client/src/components/Signups/Welcome.tsx +++ b/client/src/components/Signups/Welcome.tsx @@ -58,6 +58,7 @@ const ModalBackground = styled.div` `; const ModalContainer = styled.div` + z-index:4000; position: relative; background-color: white; padding: 20px;