From 03cc7daa4823c977907e7f77b7834050ab1af7e3 Mon Sep 17 00:00:00 2001 From: Dhruv Parmar <83108871+dhruvjsx@users.noreply.github.com> Date: Mon, 7 Apr 2025 21:29:57 +0530 Subject: [PATCH] fixed lineage full screen (#20661) --- .../Entity/EntityLineage/entity-lineage.style.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Entity/EntityLineage/entity-lineage.style.less b/openmetadata-ui/src/main/resources/ui/src/components/Entity/EntityLineage/entity-lineage.style.less index 86891be46c7..08e8a9620a0 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Entity/EntityLineage/entity-lineage.style.less +++ b/openmetadata-ui/src/main/resources/ui/src/components/Entity/EntityLineage/entity-lineage.style.less @@ -240,11 +240,11 @@ } .full-screen-lineage { - top: -120px; - left: 0; - position: absolute; - width: 100%; - height: 100%; + position: fixed; + top: @om-navbar-height; + left: @sidebar-width; + width: calc(100% - @sidebar-width); + height: calc(100vh - @om-navbar-height); .lineage-card { height: calc(100vh - @om-navbar-height);