Skip to content

Commit

Permalink
[fix] #21 위치 아이콘 크기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
karnelll committed Oct 25, 2024
1 parent 99a027d commit e39e9e0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
3 changes: 1 addition & 2 deletions fe/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions fe/src/app/components/event-creat/LocationInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ function LocationInput({ className, onSelect }: LocationInputProps) {
<Image
src="/images/Location.svg"
alt="위치 아이콘"
width={24}
height={24}
width={34}
height={34}
/>
</div>
</div>
Expand All @@ -157,4 +157,4 @@ function LocationInput({ className, onSelect }: LocationInputProps) {
);
}

export default LocationInput;
export default LocationInput;
9 changes: 9 additions & 0 deletions fe/src/app/naver-map-test/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

import NaverMap from "@/app/naver-map-test/page"

const page = () => {
return <NaverMap />;
};

export default page;

0 comments on commit e39e9e0

Please sign in to comment.