Skip to content

Commit

Permalink
Update src/components/statline/statline.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahcode authored Jan 21, 2022
1 parent fdd948c commit aa51a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/statline/statline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const StatLine = ({labels, values}: Props) => {
return (
<div className="flex justify-center m-1">
{values.map((value,i ) => (
<div key={i} className="items-center justify-center m-1 w-1/4 bg-blue-300">
<div key={i} className="items-center justify-center m-1 w-1/4">
<div className="text-3xl font-bold">{value} </div>
<div className="text-sm">{labels[i]}</div>
</div>
Expand Down

0 comments on commit aa51a48

Please sign in to comment.