Adjust Table Height to fit TV nicely

This commit is contained in:
Gabriel Brown 2024-07-22 09:01:16 -05:00
parent a451361c0d
commit 1df9bff71c
2 changed files with 3 additions and 3 deletions

0
.prod/update.sh Executable file → Normal file
View File

View File

@ -182,13 +182,13 @@ export default function Table({ employees }: { employees: Employee[] }) {
onChange={() => handleCheckboxChange(employee.id)}
/>
</td>
<td className="n-column px-1 md:py-5 border border-[#3e4446]">
<td className="n-column px-1 md:py-3 border border-[#3e4446]">
{employee.name}
</td>
<td className="s-column px-1 md:py-5 border border-[#3e4446]">
<td className="s-column px-1 md:py-3 border border-[#3e4446]">
{employee.status}
</td>
<td className="ua-column px-1 md:py-5 border border-[#3e4446]">
<td className="ua-column px-1 md:py-3 border border-[#3e4446]">
{formatTime(employee.updatedAt)}
</td>
</tr>