fix: changes empty state image and text to monochrome (#490)

This commit is contained in:
ayesha waris
2023-04-03 13:51:48 +05:00
committed by GitHub
parent 242740da23
commit 1117ed0387
2 changed files with 22 additions and 22 deletions

View File

@@ -15,7 +15,7 @@ function EmptyPage({
fullWidth = false,
}) {
const containerClasses = classNames(
'min-content-height justify-content-center align-items-center d-flex w-100 flex-column pt-5',
'min-content-height justify-content-center align-items-center d-flex w-100 flex-column',
{ 'bg-light-400': !fullWidth },
);
@@ -23,7 +23,7 @@ function EmptyPage({
<div className={containerClasses}>
<div className="d-flex flex-column align-items-center">
<EmptyIcon />
<h3 className="pt-3">{title}</h3>
<h3 className="pt-3 text-gray-500 font-weight-500">{title}</h3>
{subTitle && <p className="pb-2">{subTitle}</p>}
{action && actionText && (
<Button onClick={action} variant="outline-dark">