Skip to content

Commit

Permalink
fix(TableEmptyPlaceholder):Remove max width from table empty placehoder
Browse files Browse the repository at this point in the history
  • Loading branch information
pallendes committed Oct 2, 2024
1 parent af1940d commit 72b81f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const TableEmptyPlaceholder = ({
return (
<TableBodyRow aria-label="No data available in this table">
<TableBodyCell colSpan={colSpan} className="h-80">
<div className="min-h-96 max-w-96 flex flex-col items-center justify-center">
<div className="min-h-96 flex flex-col items-center justify-center">
<h5 className="headline-300 mb-1">{title}</h5>

<p className="paragraph-100 mb-2">{description}</p>
Expand Down

0 comments on commit 72b81f1

Please sign in to comment.