fixed the styling on the home marker

This commit is contained in:
csawatzky 2025-03-27 15:08:37 -06:00
parent d8b42c8050
commit 6755764c75
3 changed files with 10 additions and 6 deletions

View file

@ -665,7 +665,7 @@ export default function MapBase(props: Props) {
latitude={homePin.latitude}
draggable
onDragEnd={homeDragEnd}
offset={[0, -25]}>
offset={[0, -30]}>
<Box
className={classes.pin}
style={{ pointerEvents: "none", width: 50, height: 50, background: "red" }}>
@ -674,11 +674,11 @@ export default function MapBase(props: Props) {
transform: "rotate(-45deg)",
width: 30,
height: 30,
marginTop: -10,
marginLeft: -10,
marginTop: 10,
marginLeft: 7,
pointerEvents: "none"
}}>
<HomeIcon type="light" />
<HomeIcon type="light" height={30} width={30} />
</Box>
</Box>
</Marker>