Skip to content

Commit a7bbe59

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": {
77
"name": "BoxBoxJason"
88
},
9-
"version": "0.1.0",
9+
"version": "0.1.1",
1010
"engines": {
1111
"vscode": "^1.105.0"
1212
},

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)