Skip to content

Commit f8110da

Browse files
committed
Fix text heading color in Navigation
1 parent 8c31801 commit f8110da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "icarus",
3-
"version": "0.20.0",
3+
"version": "0.20.1",
44
"description": "ICARUS Terminal for Elite Dangerous",
55
"scripts": {
66
"build": "npm run build:client && npm run build:app && npm run build:service && npm run build:package",

src/client/components/panels/nav/navigation-inspector-panel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default function NavigationInspectorPanel ({ systemObject, setSystemObjec
9797
{systemObject.type === 'Planet' &&
9898
<>
9999
<div className='navigation-panel__inspector-section'>
100-
<h4 className='text-prmary'>Environment</h4>
100+
<h4 className='text-primary'>Environment</h4>
101101
{isLandable ? <p className='text-info'>Landable</p> : <p className='text-muted'>Not Landable</p>}
102102
{systemObject.gravity ? <p className='text-info'>Gravity {systemObject.gravity.toFixed(1)}g</p> : null}
103103
{systemObject.radius && <p className='text-info'>Radius {systemObject.radius.toLocaleString(undefined, { maximumFractionDigits: 0 })} Km</p>}

0 commit comments

Comments
 (0)