Skip to content

Commit

Permalink
fix: prevent grid items to exceed its container (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenaldkarrel authored Nov 22, 2024
1 parent a8de09f commit 3b510dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TableUser/data-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function DataTable<TData, TValue>({
});

return (
<div className="grid gap-2">
<div className="grid gap-2 grid-cols-1">
<div className="rounded-md border">
<div className="p-4">
<DataTableToolbar table={table} withTableViewOptions={true} />
Expand Down

0 comments on commit 3b510dd

Please sign in to comment.