Remove border from Categories table rows

This commit is contained in:
Ryan Pandya 2024-11-24 15:04:26 -08:00
parent 78144d0083
commit d440eb155d

View File

@ -52,7 +52,7 @@ export default function CategoriesView() {
</TableHeader> </TableHeader>
<TableBody> <TableBody>
{categories.categories.map((c) => ( {categories.categories.map((c) => (
<TableRow key={c.id} style={{ backgroundColor: c.color.hexcode }}> <TableRow key={c.id} style={{ backgroundColor: c.color.hexcode, color: c.color.inverse, borderBottom: 0 }}>
<TableCell className="py-1">{c.code}</TableCell> <TableCell className="py-1">{c.code}</TableCell>
<TableCell className="py-1">{c.name}</TableCell> <TableCell className="py-1">{c.name}</TableCell>
<TableCell className="py-1">{c.description}</TableCell> <TableCell className="py-1">{c.description}</TableCell>