Skip to content

Commit

Permalink
tweak: Make the missed stops count badge round
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahpurcell committed Oct 16, 2024
1 parent 945a2e9 commit 979b57e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion assets/src/components/detours/detourPanelComponents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ export const MissedStops = ({ missedStops }: MissedStopsProps) => (
{missedStops && (
<section className="pb-3">
<h2 className="c-diversion-panel__h2">
Missed Stops <Badge bg="missed-stop">{missedStops.length}</Badge>
Missed Stops{" "}
<Badge pill bg="missed-stop" className="fs-4">
{missedStops.length}
</Badge>
</h2>
<ListGroup as="ul">
{uniqBy(missedStops, (stop) => stop.id).map((missedStop) => (
Expand Down

0 comments on commit 979b57e

Please sign in to comment.