From 02d3e6e4259f6cf010e7e968a3fa2d7d67786e17 Mon Sep 17 00:00:00 2001 From: seunghwan Date: Fri, 1 Mar 2024 14:23:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EB=86=92=EC=9D=B4=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/auction/[slug]/page.tsx | 2 -- src/app/signUp/index.module.scss | 3 +-- src/common/InnerNav/index.module.scss | 0 src/common/InnerNav/index.tsx | 7 +++++++ src/common/Nav/index.module.scss | 11 ----------- 5 files changed, 8 insertions(+), 15 deletions(-) create mode 100644 src/common/InnerNav/index.module.scss create mode 100644 src/common/InnerNav/index.tsx diff --git a/src/app/auction/[slug]/page.tsx b/src/app/auction/[slug]/page.tsx index ecc3309..9517e34 100644 --- a/src/app/auction/[slug]/page.tsx +++ b/src/app/auction/[slug]/page.tsx @@ -77,8 +77,6 @@ const AuctionDetail = ({ params }: AuctionDetailProps) => { useEffect(() => { if (currentLocation && arriveLocation) { (async () => { - const url = 'https://apis-navi.kakaomobility.com/v1/directions'; - const origin = `${currentLocation.lng},${currentLocation.lat}`; const destination = `${arriveLocation.lng},${arriveLocation.lat}`; diff --git a/src/app/signUp/index.module.scss b/src/app/signUp/index.module.scss index 72e7dd2..8ab5ba3 100644 --- a/src/app/signUp/index.module.scss +++ b/src/app/signUp/index.module.scss @@ -2,7 +2,6 @@ .background { background-color: #f8fafb; - height: calc(100vh - 80px - 15rem); } .signUpPage { @@ -52,7 +51,7 @@ .submit { background-color: var(--main-color); color: #ffffff; - height: 40px; + height: 50px; font-size: 20px; border: none; border-radius: 5px; diff --git a/src/common/InnerNav/index.module.scss b/src/common/InnerNav/index.module.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/common/InnerNav/index.tsx b/src/common/InnerNav/index.tsx new file mode 100644 index 0000000..b079b46 --- /dev/null +++ b/src/common/InnerNav/index.tsx @@ -0,0 +1,7 @@ +import React from 'react'; + +const InnerNav = () => { + return
innerNav
; +}; + +export default InnerNav; diff --git a/src/common/Nav/index.module.scss b/src/common/Nav/index.module.scss index 7afdff6..86f2d8d 100644 --- a/src/common/Nav/index.module.scss +++ b/src/common/Nav/index.module.scss @@ -55,17 +55,6 @@ padding: 0 2.5rem; cursor: pointer; transition: 0.25s all; - &:hover { - color: var(--main-color); - } - - & > a:hover { - color: var(--main-color); - } - } - - & > a:hover { - color: var(--main-color); } @include mobile {