Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkp committed Mar 31, 2016
1 parent 7fef63c commit c092047
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/sections/footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import './footer.scss';

export default ({device, card}) => {
return <div className="footer">
<span className="reader">{device?device.name:''}</span>
<span className="atr" title="ATR (Answer To Reset)">{card?card:''}</span>
<Status name="device-status" status={device?'activated':'deactivated'} title={device?'Device activated':'Device deactivated'} />
<Status name="card-status" status={card?'inserted':'removed'} title={card?'Card inserted':'Card removed'} />
<span className="reader">{device?device.name:''}</span>
<span className="atr" title="ATR (Answer To Reset)">{card?card:''}</span>
</div>
};
2 changes: 1 addition & 1 deletion src/sections/footer/status/status.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

display: inline-block;
border-radius: 50%;
margin-left: .5rem;
margin-right: .5rem;
width: 1rem;
height: 1rem;
vertical-align: text-top;
Expand Down

0 comments on commit c092047

Please sign in to comment.