Skip to content

Commit

Permalink
fix(front): reduce text on buttons to avoid overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed May 14, 2021
1 parent 420611e commit c75e539
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/front/src/components/IvaoButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const IvaoButton: FC<Props> = ({ flight }) => {
variant="primary"
onClick={() => ref.current.submit()}
>
File IVAO FP
IVAO FP
</Button>
</>
)
Expand Down
2 changes: 1 addition & 1 deletion packages/front/src/components/SimBriefButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const VatsimButton: FC<Props> = ({ flight }) => {

return (
<Button href={simBriefLink} target="_blank">
View on SimBrief
SimBrief
</Button>
)
}
Expand Down
2 changes: 1 addition & 1 deletion packages/front/src/components/SkyVectorButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const SkyVectorButton: FC<Props> = ({ flight }) => {

return (
<Button href={skyVectorLink} target="_blank">
View on SkyVector
SkyVector
</Button>
)
}
Expand Down
2 changes: 1 addition & 1 deletion packages/front/src/components/VatsimButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const VatsimButton: FC<Props> = ({ flight }) => {

return (
<Button href={vatsimLink} target="_blank">
File Vatsim FP
Vatsim FP
</Button>
)
}
Expand Down

0 comments on commit c75e539

Please sign in to comment.