diff --git a/frontend/src/components/StyleSelector.module.css b/frontend/src/components/StyleSelector.module.css index c14b278..0663bc0 100644 --- a/frontend/src/components/StyleSelector.module.css +++ b/frontend/src/components/StyleSelector.module.css @@ -50,6 +50,11 @@ color: #fff; } +.pill:focus-visible { + outline: 2px solid var(--accent); + outline-offset: 2px; +} + /* compact 模式 */ .compact .category { flex-direction: row; diff --git a/frontend/src/pages/ProjectPage.tsx b/frontend/src/pages/ProjectPage.tsx index df40981..137ecb7 100644 --- a/frontend/src/pages/ProjectPage.tsx +++ b/frontend/src/pages/ProjectPage.tsx @@ -112,7 +112,7 @@ export default function ProjectPage() { {tasks.map(task => { const statusInfo = STATUS_LABELS[task.status] ?? STATUS_LABELS.pending return ( - + {task.prompt} {task.assetType} {statusInfo.label}