Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/MapDashboard/AreaBoundary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ export default function AreaBoundary({
})
}
}}
className="text-xs flex items-center gap-2 mt-4 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0"
className="text-xs flex items-center gap-2 mt-4"
>
<LinkIcon />
<LinkIcon className="h-4 w-4" />
Copy Link
</button>

Expand All @@ -186,10 +186,10 @@ export default function AreaBoundary({
passHref
target="_blank"
rel="noopener noreferrer"
className="text-xs flex items-center gap-2 mt-2 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0"
className="text-xs flex items-center gap-2 mt-2"
title={`Coordinate: ${latLng?.lat}, ${latLng?.lng}`}
>
<MapIcon />
<MapIcon className="h-4 w-4" />
See on Google Maps
</Link>
</>
Expand Down
4 changes: 2 additions & 2 deletions modules/MapDashboard/IslandMarkers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ export default function IslandMarkers() {
passHref
target="_blank"
rel="noopener noreferrer"
className="text-xs inline-flex items-center gap-1"
className="text-xs inline-flex items-center gap-2"
>
<MapIcon />
<MapIcon className="h-4 w-4" />
See on Google Maps
</Link>

Expand Down