Skip to content

Commit

Permalink
fix(ts/components/vehicleMarker): replace color classes with css var
Browse files Browse the repository at this point in the history
  • Loading branch information
firestack committed Oct 21, 2024
1 parent 52be2fe commit b8d912d
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions assets/css/map/markers/_vehicle_marker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@
fill: $color-vehicle-ontime;
}

.early.early-red {
fill: $color-vehicle-red;
}
.early.early-blue {
fill: $color-vehicle-blue;
.early {
fill: var(--color-early);
}

.late.early-red {
fill: $color-vehicle-blue;
}
.late.early-blue {
fill: $color-vehicle-red;
.late {
fill: var(--color-late);
}

.off-course {
Expand Down

0 comments on commit b8d912d

Please sign in to comment.