Skip to content

Commit

Permalink
Consistent padding
Browse files Browse the repository at this point in the history
  • Loading branch information
delbaoliveira committed Sep 22, 2023
1 parent 415b09a commit 80e08c1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions dashboard/15-final/app/ui/customers/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ export default async function CustomersTable() {
<table className="min-w-full divide-y divide-gray-300">
<thead className="bg-gray-50 text-left text-sm">
<tr>
<th scope="col" className="px-3.5 py-3.5 sm:pl-6">
<th scope="col" className="px-4 py-4 sm:pl-6">
Name
</th>
<th scope="col" className="px-3 py-3.5 font-semibold">
<th scope="col" className="px-4 py-4 font-semibold">
Email
</th>
<th scope="col" className="px-3 py-3.5 font-semibold">
<th scope="col" className="px-4 py-4 font-semibold">
Total Invoices
</th>
<th scope="col" className="px-3 py-3.5 font-semibold">
<th scope="col" className="px-4 py-4 font-semibold">
Total Pending
</th>
<th scope="col" className="px-3 py-3.5 font-semibold">
<th scope="col" className="px-4 py-4 font-semibold">
Total Paid
</th>
</tr>
Expand All @@ -49,16 +49,16 @@ export default async function CustomersTable() {
<p>{customer.name}</p>
</div>
</td>
<td className="whitespace-nowrap px-3 py-4 text-sm">
<td className="whitespace-nowrap px-4 py-4 text-sm">
{customer.email}
</td>
<td className="whitespace-nowrap px-3 py-4 text-sm">
<td className="whitespace-nowrap px-4 py-4 text-sm">
{customer.total_invoices}
</td>
<td className="whitespace-nowrap px-3 py-4 text-sm">
<td className="whitespace-nowrap px-4 py-4 text-sm">
{customer.total_pending}
</td>
<td className="whitespace-nowrap px-3 py-4 text-sm">
<td className="whitespace-nowrap px-4 py-4 text-sm">
{customer.total_paid}
</td>
</tr>
Expand Down

0 comments on commit 80e08c1

Please sign in to comment.