Skip to content

Commit

Permalink
Fix visitor/view table headers overflowing into padding
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Jun 16, 2024
1 parent a2c5dbe commit 6ce3675
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/components/TableCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ export default function TableCard({
<TableHead
key={header}
className={
index === 0 ? "text-left" : "text-right"
index === 0
? "text-left"
: "text-right pr-4 pl-0"
}
>
{header}
Expand Down

0 comments on commit 6ce3675

Please sign in to comment.