Skip to content

Commit

Permalink
update shmetro stations
Browse files Browse the repository at this point in the history
  • Loading branch information
thekingofcity committed Sep 29, 2024
1 parent 1058231 commit 7a3e149
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/components/svgs/stations/shmetro-basic-2020.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ const ShmetroBasic2020Station = (props: StationComponentProps) => {
<g transform={`translate(${x}, ${y})rotate(${rotate})`}>
<rect
id={`stn_core_${id}`}
x="-2.33"
x="-2"
y="-7.83"
width="4.67"
width="4"
height="7.83"
stroke="none"
fill={color[2]}
Expand All @@ -139,7 +139,7 @@ const ShmetroBasic2020Station = (props: StationComponentProps) => {
transform={`translate(${x + ROTATE_CONST[rotate].textDx}, ${y + textDy})`}
textAnchor={ROTATE_CONST[rotate].textAnchor}
className="rmp-name-outline"
strokeWidth="2.5"
strokeWidth="1"
>
<MultilineText
text={names[0].split('\\')}
Expand Down
4 changes: 2 additions & 2 deletions src/components/svgs/stations/shmetro-basic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const ShmetroBasicStation = (props: StationComponentProps) => {
id={`stn_core_${id}`}
r={5}
stroke="#393332"
strokeWidth="1.33"
strokeWidth="1"
fill="white"
onPointerDown={onPointerDown}
onPointerMove={onPointerMove}
Expand All @@ -74,7 +74,7 @@ const ShmetroBasicStation = (props: StationComponentProps) => {
transform={`translate(${textX}, ${textY})`}
textAnchor={textAnchor}
className="rmp-name-outline"
strokeWidth="2.5"
strokeWidth="1"
>
<MultilineText
text={names[0].split('\\')}
Expand Down
4 changes: 2 additions & 2 deletions src/components/svgs/stations/shmetro-int.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const ShmetroIntStation = (props: StationComponentProps) => {
width={width}
ry={height / 2}
stroke="#393332"
strokeWidth="1.33"
strokeWidth="1"
fill="white"
onPointerDown={onPointerDown}
onPointerMove={onPointerMove}
Expand All @@ -92,7 +92,7 @@ const ShmetroIntStation = (props: StationComponentProps) => {
transform={`translate(${x + textX}, ${y + textY})`}
textAnchor={textAnchor}
className="rmp-name-outline"
strokeWidth="2.5"
strokeWidth="1"
>
<MultilineText
text={names[0].split('\\')}
Expand Down
2 changes: 1 addition & 1 deletion src/components/svgs/stations/shmetro-osysi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const ShmetroOsysiStation = (props: StationComponentProps) => {
transform={`translate(${textX}, ${textY})`}
textAnchor={textAnchor}
className="rmp-name-outline"
strokeWidth="2.5"
strokeWidth="1"
>
<MultilineText
text={names[0].split('\\')}
Expand Down

0 comments on commit 7a3e149

Please sign in to comment.