fix(ui): align EvalReport tab padding with EvalOverview
All checks were successful
CI / test (push) Successful in 3m9s

评估报告 tab 外层 padding 从 '16px 16px 24px' 改为 '0 16px 24px',
与概览页外层 wrapper 一致,消除 Drawer 内 tab 切换时与导航栏之间的视觉错位。
This commit is contained in:
sinohqb 2026-08-21 04:22:03 +08:00
parent 7910717b1e
commit d77a363f58

View File

@ -200,7 +200,7 @@ export default function EvalReport({ ev, onBack }: EvalReportProps) {
}) })
return ( return (
<div style={{ height: '100%', overflowY: 'auto', padding: '16px 16px 24px' }}> <div style={{ height: '100%', overflowY: 'auto', padding: '0 16px 24px' }}>
<SectionHeader <SectionHeader
title={`${ev.name} · 评估报告`} title={`${ev.name} · 评估报告`}
onBack={onBack} onBack={onBack}