coma updated after sprint 5

This commit is contained in:
2024-08-23 22:01:17 +05:30
parent 0db739c557
commit 3a7d174766
8 changed files with 51 additions and 66 deletions

View File

@@ -36,7 +36,7 @@ const DataTable = ({
) : (
<Table size="sm">
<TableCaption p={total?0:null}>{total? total :"Tanami v1.0.0"}</TableCaption>
<Thead backgroundColor="gray.50">
<Thead backgroundColor="gray.100">
<Tr>
{tableHeadRow.map((heading, index) => (
<Th
@@ -82,7 +82,7 @@ const DataTable = ({
</Tr>
))
: data?.map((item, index) => (
<Tr key={index}>
<Tr bg={index % 2 === 0 ? "" : "gray.50"} key={index}>
{tableHeadRow.map((heading, i) => (
<Td
textAlign={