Skip to content

Commit 5139233

Browse files
committed
fix: display text alignment
1 parent 5fa3912 commit 5139233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/components/UserStats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const UserStats: React.FC = () => {
7878

7979
const ProfileBox: React.FC<{ value: string, label: string }> = ({ value, label }) => {
8080
return (
81-
<div className="profile-box flex flex-col items-center justify-center w-fit max-w-25 py-1.5 px-2.5 rounded-md flex-1 bg-background-gray">
81+
<div className="profile-box text-center flex flex-col items-center justify-center w-fit max-w-25 py-1.5 px-2.5 rounded-md flex-1 bg-background-gray">
8282
<span className="text-xl font-sans">{value}</span>
8383
<span className="text-sm font-sans">{label}</span>
8484
</div>

0 commit comments

Comments
 (0)