diff --git a/src/frontend/src/components/EdictBoard.tsx b/src/frontend/src/components/EdictBoard.tsx
index 61fc9df..394f2b2 100644
--- a/src/frontend/src/components/EdictBoard.tsx
+++ b/src/frontend/src/components/EdictBoard.tsx
@@ -619,13 +619,13 @@ function ProjectActionPopup({ projectId, projectName, onAction, onClose }: {
+ cursor: 'pointer', borderRadius: 4, transition: 'background 0.15s',
+ }} onMouseEnter={e => (e.currentTarget.style.background = 'var(--panel2)')} onMouseLeave={e => (e.currentTarget.style.background = 'transparent')}>📦 归档项目
+ cursor: 'pointer', borderRadius: 4, transition: 'background 0.15s',
+ }} onMouseEnter={e => (e.currentTarget.style.background = 'var(--panel2)')} onMouseLeave={e => (e.currentTarget.style.background = 'transparent')}>🗑️ 删除项目
);
}