Fix left aligned statistic items

This commit is contained in:
Gabe Kangas
2020-11-23 21:13:30 -08:00
parent ac0b315262
commit 475170f381
2 changed files with 2 additions and 2 deletions

View File

@@ -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}`}

View File

@@ -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()}