Skip to content

Commit

Permalink
fix: 회원가입 페이지 높이 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Leeseunghwan7305 committed Mar 1, 2024
1 parent aba72d4 commit 02d3e6e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 15 deletions.
2 changes: 0 additions & 2 deletions src/app/auction/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;

Expand Down
3 changes: 1 addition & 2 deletions src/app/signUp/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

.background {
background-color: #f8fafb;
height: calc(100vh - 80px - 15rem);
}

.signUpPage {
Expand Down Expand Up @@ -52,7 +51,7 @@
.submit {
background-color: var(--main-color);
color: #ffffff;
height: 40px;
height: 50px;
font-size: 20px;
border: none;
border-radius: 5px;
Expand Down
Empty file.
7 changes: 7 additions & 0 deletions src/common/InnerNav/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const InnerNav = () => {
return <div>innerNav</div>;
};

export default InnerNav;
11 changes: 0 additions & 11 deletions src/common/Nav/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 02d3e6e

Please sign in to comment.