summaryrefslogtreecommitdiff
path: root/src/components/ListTable.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ListTable.tsx')
-rw-r--r--src/components/ListTable.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ListTable.tsx b/src/components/ListTable.tsx
index 7c316ed..4bbe633 100644
--- a/src/components/ListTable.tsx
+++ b/src/components/ListTable.tsx
@@ -25,7 +25,7 @@ const ListTable: React.FC<Props> = ({ items = [], fields, handleRowClick = () =>
<table className="table-auto w-full">
<thead>
<tr className="border-b select-none">
- {fields.map(field => <th key={field.label}>{field.label}</th>)}
+ {fields.map(field => <th className="pl-3 text-left bg-gray-100" key={field.label}>{field.label}</th>)}
</tr>
</thead>
<tbody>