Skip to content

Commit

Permalink
Remove relative from table row and cells (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
anurag-roy authored Feb 11, 2024
1 parent aa97e2d commit 64fb75a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/TableCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ export default function TableCard({
{(countByProperty || []).map((item, key) => (
<TableRow
key={item[0]}
className="relative group [&_td]:last:rounded-b-md"
className="group [&_td]:last:rounded-b-md"
width={barChartPercentages[key]}
>
<TableCell
className="font-medium relative w-3/4"
className="font-medium w-3/4"
width={barChartPercentages[key]}
>
{item[0]}
</TableCell>
<TableCell className="text-right relative w-1/4">
<TableCell className="text-right w-1/4">
{item[1]}
</TableCell>
</TableRow>
Expand Down

0 comments on commit 64fb75a

Please sign in to comment.