Skip to content

Commit

Permalink
fix: Adjust direction arrow positioning in StopMarker component
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmedhossamdev committed Nov 1, 2024
1 parent 31a45b4 commit 4eca39b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/map/StopMarker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,42 +53,42 @@
}
.direction-arrow.n {
top: -18px;
left: 12px;
top: -20px;
left: 8px;
transform: rotate(0deg);
}
.direction-arrow.ne {
top: -15px;
top: -18px;
right: -10px;
transform: rotate(45deg);
}
.direction-arrow.e {
right: -13px;
top: 5px;
top: 0px;
transform: rotate(90deg);
}
.direction-arrow.se {
bottom: -15px;
bottom: -17px;
right: -10px;
transform: rotate(135deg);
}
.direction-arrow.s {
bottom: -18px;
left: 12px;
bottom: -20px;
left: 8px;
transform: rotate(180deg);
}
.direction-arrow.sw {
bottom: -15px;
bottom: -18px;
left: -10px;
transform: rotate(225deg);
}
.direction-arrow.w {
left: -13px;
top: 5px;
top: 0px;
transform: rotate(270deg);
}
.direction-arrow.nw {
top: -15px;
top: -17px;
left: -10px;
transform: rotate(315deg);
}
Expand Down

0 comments on commit 4eca39b

Please sign in to comment.