Skip to content

Commit

Permalink
add the ?border query parameter to mrt-badges images
Browse files Browse the repository at this point in the history
Signed-off-by: Vu Van Dung <me@joulev.dev>
  • Loading branch information
joulev committed Mar 10, 2024
1 parent 7bc931b commit 4ca574a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/blogs/walking-on-singapore-mrt-lines/panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function LineBadge({ line }: { line: Line }) {
return (
<img
key={line.lineCode}
src={`https://mrt-badges.joulev.dev/${line.lineCode}L`}
src={`https://mrt-badges.joulev.dev/${line.lineCode}L?border=2`}
alt={line.lineName}
className="h-8 w-[52px]"
/>
Expand All @@ -84,7 +84,7 @@ function StationBadge({ station }: { station: string }) {
<>
<img
key={identifier}
src={`https://mrt-badges.joulev.dev/${identifier}`}
src={`https://mrt-badges.joulev.dev/${identifier}?border=2`}
alt={name}
className="h-[1.5em]"
/>
Expand Down

0 comments on commit 4ca574a

Please sign in to comment.