diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderES.tsx b/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderES.tsx
index 75eb1912501..e3c99f62521 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderES.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderES.tsx
@@ -11,7 +11,7 @@
* limitations under the License.
*/
-import { Typography } from 'antd';
+import { Card, Typography } from 'antd';
import { ROUTES } from 'constants/constants';
import {
ELASTICSEARCH_ERROR_PLACEHOLDER_TYPE,
@@ -142,8 +142,8 @@ const ErrorPlaceHolderES = ({ type, errorMessage, query }: Props) => {
{stepsData.map((data) => (
-
@@ -168,7 +168,7 @@ const ErrorPlaceHolderES = ({ type, errorMessage, query }: Props) => {
{`${t('label.click-here')} >>`}
-
+
))}
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderIngestion.tsx b/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderIngestion.tsx
index ca80716a11b..9ce897c66af 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderIngestion.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/common/error-with-placeholder/ErrorPlaceHolderIngestion.tsx
@@ -11,6 +11,7 @@
* limitations under the License.
*/
+import { Card } from 'antd';
import { AIRFLOW_DOCS } from 'constants/docs.constants';
import { t } from 'i18next';
import React from 'react';
@@ -19,7 +20,7 @@ const ErrorPlaceHolderIngestion = () => {
const airflowSetupGuide = () => {
return (
-
+
{t('message.manage-airflow-api-failed')}
@@ -35,7 +36,7 @@ const ErrorPlaceHolderIngestion = () => {
{`${t('label.install-airflow-api')} >>`}
-
+
);
};
diff --git a/openmetadata-ui/src/main/resources/ui/src/components/onboarding/Onboarding.tsx b/openmetadata-ui/src/main/resources/ui/src/components/onboarding/Onboarding.tsx
index db29b4175f6..6b67ce91b12 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/onboarding/Onboarding.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/onboarding/Onboarding.tsx
@@ -11,6 +11,7 @@
* limitations under the License.
*/
+import { Card } from 'antd';
import { ONBOARDING_STEPS_DATA } from 'constants/Onboarding.constants';
import { t } from 'i18next';
import { uniqueId } from 'lodash';
@@ -30,8 +31,8 @@ const Onboarding: FC = () => {
{ONBOARDING_STEPS_DATA.map((data) => (
-
@@ -50,7 +51,7 @@ const Onboarding: FC = () => {
{t(data.description)}
-
+
))}
diff --git a/openmetadata-ui/src/main/resources/ui/src/pages/teams/UserCard.tsx b/openmetadata-ui/src/main/resources/ui/src/pages/teams/UserCard.tsx
index 1ed5d188786..b72245cad69 100644
--- a/openmetadata-ui/src/main/resources/ui/src/pages/teams/UserCard.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/pages/teams/UserCard.tsx
@@ -12,7 +12,7 @@
*/
import { CloseOutlined } from '@ant-design/icons';
-import { Button, Tooltip, Typography } from 'antd';
+import { Button, Card, Tooltip, Typography } from 'antd';
import classNames from 'classnames';
import ProfilePicture from 'components/common/ProfilePicture/ProfilePicture';
import { usePermissionProvider } from 'components/PermissionProvider/PermissionProvider';
@@ -160,9 +160,9 @@ const UserCard = ({
};
return (
-
@@ -253,7 +253,7 @@ const UserCard = ({
))}
-
+
);
};
diff --git a/openmetadata-ui/src/main/resources/ui/src/styles/tailwind.css b/openmetadata-ui/src/main/resources/ui/src/styles/tailwind.css
index e3c5672cb5c..d6f293ddb98 100644
--- a/openmetadata-ui/src/main/resources/ui/src/styles/tailwind.css
+++ b/openmetadata-ui/src/main/resources/ui/src/styles/tailwind.css
@@ -87,10 +87,6 @@
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
- .tw-card {
- @apply tw-bg-white tw-border tw-border-main tw-rounded-md;
- }
-
/* form */
.tw-form-inputs {