Adjust styles of confirmed column

This commit is contained in:
Manuel Bustillo 2024-11-13 08:47:50 +01:00
parent 2985c8b73f
commit a6c517f8a1

View File

@ -50,22 +50,22 @@ export default function GroupsTable() {
<td className="px-6"> <td className="px-6">
<div className="w-8 h-8 rounded-full" style={{ backgroundColor: group.color }}></div> <div className="w-8 h-8 rounded-full" style={{ backgroundColor: group.color }}></div>
</td> </td>
<td className="px-6"> <td className="px-6 text-lg">
{group.attendance?.confirmed} {group.attendance?.confirmed}
</td> </td>
<td className="px-6"> <td className="px-6 text-sm">
{group.attendance?.tentative} {group.attendance?.tentative}
</td> </td>
<td className="px-6"> <td className="px-6 text-sm">
{group.attendance?.invited} {group.attendance?.invited}
</td> </td>
<td className="px-6"> <td className="px-6 text-sm">
{group.attendance?.declined} {group.attendance?.declined}
</td> </td>
<td className="px-6"> <td className="px-6 text-sm">
{group.attendance?.considered} {group.attendance?.considered}
</td> </td>
<td className="px-6"> <td className="px-6 text-sm">
{group.attendance?.total} {group.attendance?.total}
</td> </td>
</tr> </tr>