Remove border from Categories table rows
This commit is contained in:
parent
78144d0083
commit
d440eb155d
@ -52,7 +52,7 @@ export default function CategoriesView() {
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{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.name}</TableCell>
|
||||
<TableCell className="py-1">{c.description}</TableCell>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user