Skip to content

Commit 1e0b4b2

Browse files
theredmooseclaude
andcommitted
Update: consistent 8px gaps and deeper label indent in Member Detail stats
- 8px gap before Age (name→Age), before Height (Age→Height), and before Head (Weight→Head) — all group separators now uniform - Increase label indent pl-4→pl-[18px] to align under 'e' in name Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 5dcc87a commit 1e0b4b2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/MemberDetail.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,16 +332,16 @@ export function MemberDetail({
332332

333333
{/* Right column: name + stats + history */}
334334
<div className="flex-1 pt-1 min-w-0">
335-
<div className="flex items-center gap-2 mb-[11px]">
335+
<div className="flex items-center gap-2 mb-0">
336336
<h2 className="text-2xl font-black text-slate-900 tracking-tight leading-none truncate">
337337
{member.name}
338338
</h2>
339339
</div>
340340

341-
<div className="mb-3 mt-[11px]">
341+
<div className="mb-3 mt-0">
342342
{[...statGroup1, ...statGroup2].map((row, i) => (
343-
<div key={row.label} className="flex items-center border-b border-slate-100 py-2.5" style={i === statGroup1.length ? { marginTop: '8px' } : undefined}>
344-
<span className="flex-1 pl-4 text-[11px] text-slate-400 font-bold tracking-widest">
343+
<div key={row.label} className="flex items-center border-b border-slate-100 py-2.5" style={(i === 0 || i === 1 || i === statGroup1.length) ? { marginTop: '8px' } : undefined}>
344+
<span className="flex-1 pl-[18px] text-[11px] text-slate-400 font-bold tracking-widest">
345345
{row.label}
346346
</span>
347347
<div className="flex items-center gap-1.5">

0 commit comments

Comments
 (0)