Skip to content

Commit

Permalink
fix: presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
teramotodaiki committed Nov 19, 2019
1 parent 42752c8 commit 36c90b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/GameView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ export function GameView({ iframeRef }: GameViewProps) {
{version <= rv ? (
<div className={banner.black}>
<img src={require('./resources/paperPlane.svg')} alt="✈︎" />
<span>{'This is the latest version'}</span>
<span>{'Playing the latest version'}</span>
</div>
) : version === lv ? (
<div className={banner.black}>
<img src={require('./resources/paperPlane.svg')} alt="✈︎" />
<span>{'New version by you'}</span>
<span>{'Updated by you'}</span>
</div>
) : (
<div style={{ backgroundColor: '#F1C40F' }}>
<img src={require('./resources/paperPlane.svg')} alt="✈︎" />
<span>{'New version by Teramoto'}</span>
<span>{'Updated by Teramoto'}</span>
</div>
)}
</Transition>
Expand Down

0 comments on commit 36c90b8

Please sign in to comment.