Skip to content

Commit

Permalink
Fix text heading color in Navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
iaincollins committed Jan 29, 2023
1 parent 8c31801 commit f8110da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "icarus",
"version": "0.20.0",
"version": "0.20.1",
"description": "ICARUS Terminal for Elite Dangerous",
"scripts": {
"build": "npm run build:client && npm run build:app && npm run build:service && npm run build:package",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function NavigationInspectorPanel ({ systemObject, setSystemObjec
{systemObject.type === 'Planet' &&
<>
<div className='navigation-panel__inspector-section'>
<h4 className='text-prmary'>Environment</h4>
<h4 className='text-primary'>Environment</h4>
{isLandable ? <p className='text-info'>Landable</p> : <p className='text-muted'>Not Landable</p>}
{systemObject.gravity ? <p className='text-info'>Gravity {systemObject.gravity.toFixed(1)}g</p> : null}
{systemObject.radius && <p className='text-info'>Radius {systemObject.radius.toLocaleString(undefined, { maximumFractionDigits: 0 })} Km</p>}
Expand Down

0 comments on commit f8110da

Please sign in to comment.