Skip to content

Commit

Permalink
style : 플로팅 버튼 스타일 변경 (#412)
Browse files Browse the repository at this point in the history
* style : 현재 위치 마커 스타일 수정

* style : 지도 색상 소폭 수정

* style : 지도 장소 마커 변경

* style : 지도 플로팅 버튼 스타일 변경
  • Loading branch information
cmlim0070 authored Dec 9, 2024
1 parent 5352bff commit 4090ab1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/MapPage/Maplibre/MaplibreWithSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ export const MaplibreWithSearch = ({
<IoIosSearch className="w-6 h-8 cursor-pointer" />
</div>
{searchedLocation?.name && (
<div className="absolute top-[5rem] w-[340px] h-[48px] left-1/2 transform -translate-x-1/2 z-10 bg-sample-gray text-sample-black text-bold rounded-md p-2 flex items-center justify-between">

<div className="absolute top-[5rem] w-[340px] h-[48px] left-1/2 transform -translate-x-1/2 z-10 bg-sample-gray shadow-md text-sample-black text-bold rounded-md p-2 flex items-center justify-between">

<LuMapPin className="ml-2" />
<span className="flex-1 ml-4">{searchedLocation.name}</span>
<LiaTimesSolid
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
textgray: '#C3C3C3',
select: '#22ABEF',
marker: '#0168df',
place: '#fe896b'
place: '#fe6039'
},
theme: {
skyblue: '#98c7fd',
Expand Down

0 comments on commit 4090ab1

Please sign in to comment.