Browse Source

Fix left aligned statistic items

pull/1886/head
Gabe Kangas 6 years ago
parent
commit
475170f381
  1. 2
      web/pages/hardware-info.tsx
  2. 2
      web/pages/viewer-info.tsx

2
web/pages/hardware-info.tsx

@ -74,7 +74,7 @@ const series = [ @@ -74,7 +74,7 @@ const series = [
<div>
<div>
<h2>Hardware Info</h2>
<Row gutter={[16, 16]}>
<Row gutter={[16, 16]} justify="space-around">
<StatisticItem
title={series[0].name}
value={`${currentCPUUsage}`}

2
web/pages/viewer-info.tsx

@ -104,7 +104,7 @@ export default function ViewersOverTime() { @@ -104,7 +104,7 @@ export default function ViewersOverTime() {
return (
<div>
<h2>Current Viewers</h2>
<Row gutter={[16, 16]}>
<Row gutter={[16, 16]} justify="space-around">
<StatisticItem
title="Current viewers"
value={viewerCount.toString()}

Loading…
Cancel
Save