style(frontend): change delete button to icon and rename actions column
All checks were successful
Docker Build and Publish / build-and-push (push) Successful in 33s

This commit is contained in:
2026-01-11 20:29:19 -05:00
parent 366253ce19
commit a630142866

View File

@@ -77,9 +77,10 @@ const TimeList = ({ entries, onEntryDeleted }) => {
{/* For now, just render button. */} {/* For now, just render button. */}
<button <button
onClick={() => handleDelete(entry.id)} onClick={() => handleDelete(entry.id)}
className="text-red-600 hover:text-red-900" className="text-red-500 hover:text-red-700 font-bold text-lg"
title={t('list.delete') || 'Delete'}
> >
{t('list.delete') || 'Delete'}
</button> </button>
</td> </td>
</tr> </tr>