aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-20 20:26:53 +0900
committernsfisis <nsfisis@gmail.com>2025-03-20 20:26:53 +0900
commitd030df50f009931980ea9e15c0df10c0b50a4bc8 (patch)
tree01c065b4bd9a60df4d5acfa6da265782cab86a12 /frontend/app
parent5fc5745af97c580c443e0a9ab42dd9225687fa20 (diff)
downloadphperkaigi-2025-albatross-d030df50f009931980ea9e15c0df10c0b50a4bc8.tar.gz
phperkaigi-2025-albatross-d030df50f009931980ea9e15c0df10c0b50a4bc8.tar.zst
phperkaigi-2025-albatross-d030df50f009931980ea9e15c0df10c0b50a4bc8.zip
fix(frontend): align player name and icon center
Diffstat (limited to 'frontend/app')
-rw-r--r--frontend/app/components/PlayerNameAndIcon.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/PlayerNameAndIcon.tsx b/frontend/app/components/PlayerNameAndIcon.tsx
index e9536e3..c9c7f20 100644
--- a/frontend/app/components/PlayerNameAndIcon.tsx
+++ b/frontend/app/components/PlayerNameAndIcon.tsx
@@ -8,7 +8,7 @@ type Props = {
export default function PlayerNameAndIcon({ label, profile }: Props) {
return (
- <div className="flex flex-col gap-6 my-auto">
+ <div className="flex flex-col gap-6 my-auto items-center">
<div className="flex flex-col gap-2">
<div className="text-4xl">{label}</div>
<div className="text-6xl">{profile.displayName}</div>