From 69393204666af58365e945f5df4cb13984e87284 Mon Sep 17 00:00:00 2001 From: Lukas Harbarth Date: Fri, 12 Sep 2025 10:51:09 +0200 Subject: [PATCH] fix(ObjectPage): contain stacking context within the page --- packages/main/src/components/ObjectPage/ObjectPage.module.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/main/src/components/ObjectPage/ObjectPage.module.css b/packages/main/src/components/ObjectPage/ObjectPage.module.css index 9ed2bc09703..d456015fdea 100644 --- a/packages/main/src/components/ObjectPage/ObjectPage.module.css +++ b/packages/main/src/components/ObjectPage/ObjectPage.module.css @@ -4,12 +4,14 @@ --_ui5wcr_ObjectPage_title_fontsize: var(--sapObjectHeader_Title_FontSize); box-sizing: border-box; + position: relative; + /* Contain stacking context within the page */ + z-index: 0; display: flex; flex-direction: column; width: 100%; height: 100%; max-height: 100vh; - position: relative; white-space: normal; font-family: var(--sapFontFamily); background-color: var(--sapBackgroundColor);