@@ -1,6 +1,6 @@
{
"name": "homelab-dashboard",
- "version": "0.0.2",
+ "version": "0.1.0",
"description": "Custom administration dashboard for the homelab OpenShift cluster",
"private": true,
"license": "Apache-2.0",
@@ -114,19 +114,22 @@ const GamingCard: FC = () => {
</p>
{status.game.running && (
- <p style={{ fontSize: '0.875rem' }}>
- CPU:{' '}
- <strong>
- {status.game.cpuPercent.toFixed(1)}%
- </strong>
- {' / '}
- RAM:{' '}
- {status.game.memoryMiB.toFixed(1)} MiB
+ <p>
+ <small>
+ CPU:{' '}
+ <strong>
+ {status.game.cpuPercent.toFixed(1)}%
+ </strong>
+ {' / '}
+ RAM:{' '}
+ {status.game.memoryMiB.toFixed(1)} MiB
+ </small>
)}
+ <br />
<p>
Sunshine session:{' '}
<strong>
@@ -99,7 +99,6 @@ const NowPlayingCard: FC = () => {
{status?.error ?? 'Unable to contact MPD.'}
</Alert>
<br />
- <br />
</>