Skip to content

Commit

Permalink
fix: add appropriate padding for table-data with respect to table-hea…
Browse files Browse the repository at this point in the history
…der for existng headers tables
  • Loading branch information
ullasgowda committed Jan 4, 2024
1 parent b0727c5 commit 9f1bed3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ const HeadersEditor = (props: HeaderEditorProps) => {
.filter(h => !!h.name)
.map(header => (
<tr className="">
<td className="px-3 py-3 whitespace-nowrap font-medium">
<td className="px-md py-sm whitespace-nowrap font-medium">
{header.name}
</td>
<td className="px-3 py-3 whitespace-nowrap text-gray-600">
<td className="px-md py-sm whitespace-nowrap text-gray-600">
{header.type}
</td>
<td className="px-3 py-3 whitespace-nowrap text-gray-600">
<td className="px-md py-sm whitespace-nowrap text-gray-600">
{header.value}
</td>
</tr>
Expand Down

0 comments on commit 9f1bed3

Please sign in to comment.