fix: 精英宝典工作台右侧任务记录改为固定比例布局

将主布局 gridTemplateColumns 从固定像素 minmax(520px, 560px)
改为固定比例 minmax(0, 2fr) minmax(0, 1fr),
使左右两侧在不同分辨率下始终保持 2:1 比例。
This commit is contained in:
yml2213
2026-08-01 10:34:48 +08:00
parent 947539f01e
commit bdecc40c55
+1 -1
View File
@@ -1159,7 +1159,7 @@ export default function DouyuTasksPage({ handbook }: { handbook: HandbookKind })
<div style={{ <div style={{
flex: 1, minHeight: 0, flex: 1, minHeight: 0,
display: 'grid', display: 'grid',
gridTemplateColumns: 'minmax(0, 1fr) minmax(520px, 560px)', gridTemplateColumns: 'minmax(0, 2fr) minmax(0, 1fr)',
gap: 12, overflow: 'hidden', gap: 12, overflow: 'hidden',
}}> }}>
{/* 左侧账号 */} {/* 左侧账号 */}