fix: Improve layout of project status indicators for better alignment and visibility

This commit is contained in:
2025-09-19 07:40:33 +02:00
parent c39746f4f6
commit 94b46be15b

View File

@@ -545,7 +545,8 @@ export default function ProjectListPage() {
? "P+B"
: "-"}
</td>
<td className="px-2 py-3 text-xs text-gray-600 flex justify-center items-center">
<td className="px-2 py-3 text-xs text-gray-600">
<div className="flex justify-center items-center h-full">
{project.project_status === 'registered' ? (
<span className="text-red-500 font-bold text-sm" title={t('projectStatus.registered')}>N</span>
) : project.project_status === 'in_progress_design' ? (
@@ -559,6 +560,7 @@ export default function ProjectListPage() {
) : (
<span title="Unknown status">-</span>
)}
</div>
</td>
<td className="px-2 py-3">
<Link href={`/projects/${project.project_id}`}>