Skip to content

Commit

Permalink
fix: fixes datatable bottom padding
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinan029 committed Feb 6, 2025
1 parent ea4506b commit eb014ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const CustomersPage = () => {
return (
<Container className="mt-5">
<h1>Customers</h1>
<section className="mt-5">
<section className="mt-5 mb-6">
<DataTable
isLoading={isLoading}
isExpandable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const DashboardDataTable = () => {
), [fetchData]);

return (
<section className="mt-5">
<section className="mt-5 mb-6">
<DataTable
isLoading={isLoading}
isPaginated
Expand Down

0 comments on commit eb014ec

Please sign in to comment.