fix(export): tighten action column layout

This commit is contained in:
aits2026
2026-03-06 11:45:38 +08:00
parent 75b58d0423
commit 39662038f7
2 changed files with 8 additions and 8 deletions

View File

@@ -5382,12 +5382,6 @@ function ExportPage() {
)}
<div className="row-action-cell">
<div className={`row-action-main ${hasRecentExport ? '' : 'single-line'}`.trim()}>
<button
className={`row-detail-btn ${showSessionDetailPanel && sessionDetail?.wxid === contact.username ? 'active' : ''}`}
onClick={() => openSessionDetail(contact.username)}
>
</button>
<div className={`row-export-action-stack ${hasRecentExport ? '' : 'single-line'}`.trim()}>
<button
type="button"
@@ -5405,6 +5399,12 @@ function ExportPage() {
</button>
{hasRecentExport && <span className="row-export-time">{recentExportTime}</span>}
</div>
<button
className={`row-detail-btn ${showSessionDetailPanel && sessionDetail?.wxid === contact.username ? 'active' : ''}`}
onClick={() => openSessionDetail(contact.username)}
>
</button>
</div>
</div>
</div>