fix: vertical-scrollbar-issue-when-organization-table-contains-no-records (#10008)

This commit is contained in:
Ujwal Kumar
2023-07-10 16:16:20 +02:00
committed by GitHub
parent 9456ffbb48
commit e088196c8d
+1 -1
View File
@@ -42,7 +42,7 @@ const Cell = ({ children, widthClassNames }: TableProps & DynamicWidth) => (
);
export const Table = ({ children }: TableProps) => (
<div className="bg-default border-subtle overflow-x-auto rounded-md border">
<div className="bg-default border-subtle overflow-x-auto overflow-y-hidden rounded-md border">
<table className="divide-subtle w-full divide-y rounded-md">{children}</table>
</div>
);