Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
vasyaod committed Dec 20, 2023
1 parent 81b4dba commit abb92aa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions viewer-2/pages/dashboard-stats.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const IndexPage = ({yearStats, monthStats}) => {
yearStats.map(row =>
<Card key={row.date} >
<Card.Content>
<Card.Header style={{textAlign: "center", fontSize:"2em"}}>Year {row.date}</Card.Header>
<Card.Header style={{textAlign: "center", fontSize:"3em"}}>
Year {row.date}
</Card.Header>
<Card.Description style={{padding: "2em"}}>
<div>
<Statistic style={{width: "100%"}}>
Expand Down Expand Up @@ -43,7 +45,9 @@ const IndexPage = ({yearStats, monthStats}) => {
monthStats.map(row =>
<Card key={row.date} >
<Card.Content>
<Card.Header style={{textAlign: "center", fontSize:"2em"}}>Month {row.date}</Card.Header>
<Card.Header style={{textAlign: "center", fontSize:"3em"}}>
Month {row.date}
</Card.Header>
<Card.Description style={{padding: "2em"}}>
<div>
<Statistic style={{width: "100%"}}>
Expand Down

0 comments on commit abb92aa

Please sign in to comment.