Better response headers

This commit is contained in:
Gregory Schier
2023-04-02 10:45:41 -07:00
parent 587254a0e7
commit 71a2b11ab4
8 changed files with 59 additions and 34 deletions

View File

@@ -5,5 +5,9 @@ interface Props {
}
export function EmptyStateText({ children }: Props) {
return <div className="h-full text-gray-400 flex items-center justify-center">{children}</div>;
return (
<div className="rounded-lg border border-dashed border-highlight h-full text-gray-400 flex items-center justify-center">
{children}
</div>
);
}