-
-
-
-
-
-
+
+
+

+
+
+
+
+
+ Page Not Found
+
+
+ The page you are looking for is not available
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
);
};
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 f339ce2ac80..282a0eaef51 100644
--- a/openmetadata-ui/src/main/resources/ui/src/styles/tailwind.css
+++ b/openmetadata-ui/src/main/resources/ui/src/styles/tailwind.css
@@ -38,6 +38,16 @@
@apply tw-text-body tw-text-grey-body tw-font-normal;
}
+ /* utils */
+
+ .tw-flex-center {
+ @apply tw-flex tw-justify-center tw-items-center;
+ }
+
+ .tw-hw-full {
+ @apply tw-w-full tw-h-full;
+ }
+
.tw-table {
@apply tw-w-full;
}
diff --git a/openmetadata-ui/src/main/resources/ui/src/styles/x-master.css b/openmetadata-ui/src/main/resources/ui/src/styles/x-master.css
index acda28128f5..5b5faf9ce52 100644
--- a/openmetadata-ui/src/main/resources/ui/src/styles/x-master.css
+++ b/openmetadata-ui/src/main/resources/ui/src/styles/x-master.css
@@ -910,3 +910,24 @@ code {
.public-DraftStyleDefault-block {
margin: 0;
}
+
+/* page not found css */
+
+.page-not-found-container {
+ width: 100%;
+ height: calc(100% - 68px);
+ display: flex;
+}
+
+.page-not-found-container::after,
+.page-not-found-container::before {
+ content: '';
+ width: 100%;
+}
+
+.page-not-found-container::after {
+ background-color: #f8f9fa;
+}
+.page-not-found-container::before {
+ background-color: #fff;
+}