From 6c25592377bef2780b51301713514c97b778e1a4 Mon Sep 17 00:00:00 2001 From: dongree Date: Wed, 4 Dec 2024 11:11:21 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20modal=20z-index=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FE/src/components/Login/index.tsx | 4 ++-- FE/src/components/Mypage/CancelAlertModal.tsx | 8 ++++---- .../StocksDetail/TradeSection/TradeAlertModal.tsx | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/FE/src/components/Login/index.tsx b/FE/src/components/Login/index.tsx index 836b896..01aba2e 100644 --- a/FE/src/components/Login/index.tsx +++ b/FE/src/components/Login/index.tsx @@ -62,7 +62,7 @@ export default function Login() { }; return ( - <> +
toggleModal()} />

JuGa

@@ -98,6 +98,6 @@ export default function Login() {
- +
); } diff --git a/FE/src/components/Mypage/CancelAlertModal.tsx b/FE/src/components/Mypage/CancelAlertModal.tsx index 66a378b..23af5bf 100644 --- a/FE/src/components/Mypage/CancelAlertModal.tsx +++ b/FE/src/components/Mypage/CancelAlertModal.tsx @@ -8,7 +8,7 @@ export default function CancelAlertModal() { const { stock_name, amount, trade_type } = order; return ( - <> +
close()} />
@@ -17,7 +17,7 @@ export default function CancelAlertModal() {
- +
); } diff --git a/FE/src/components/StocksDetail/TradeSection/TradeAlertModal.tsx b/FE/src/components/StocksDetail/TradeSection/TradeAlertModal.tsx index 5a075af..cf04b1b 100644 --- a/FE/src/components/StocksDetail/TradeSection/TradeAlertModal.tsx +++ b/FE/src/components/StocksDetail/TradeSection/TradeAlertModal.tsx @@ -36,13 +36,13 @@ export default function TradeAlertModal({ }; return ( - <> +
toggleModal()} />
{stockName} {type === 'BUY' ? '매수' : '매도'} {count}주
-
+

{count}주 희망가격

{totalPrice.toLocaleString()}원

@@ -59,7 +59,7 @@ export default function TradeAlertModal({
- +
); }