added dark mode function - not very functonal at this point

This commit is contained in:
2025-07-24 11:51:03 +02:00
parent 15da52810b
commit 6ff96fbe87

View File

@@ -71,7 +71,7 @@ const UserTable: React.FC<UserTableProps> = ({ users }) => {
</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-100">
<tbody className="bg-white dark:bg-black divide-y divide-gray-100">
{userList.map((user) => (
<tr key={user.id} className="hover:bg-blue-50 transition">
<td className="px-4 py-2 whitespace-nowrap">{user.id}</td>