From f9b0abdd142276ef8e564d27d960af35f1654541 Mon Sep 17 00:00:00 2001 From: Dmitry Shilov Date: Mon, 5 May 2025 15:50:43 +0200 Subject: [PATCH] fix: Add overflow property and set minimum heights for flex and sidebar containers (#2124) * fix: Add overflow property and set minimum heights for flex and sidebar containers * fix: Update overflow and minimum height properties for tab panes and containers --- less/documentDBFabric.less | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/less/documentDBFabric.less b/less/documentDBFabric.less index 900535700..832679abd 100644 --- a/less/documentDBFabric.less +++ b/less/documentDBFabric.less @@ -211,3 +211,12 @@ a:focus { .fileImportImg img { filter: brightness(0) saturate(100%); } + +.tabPanesContainer { + overflow: auto !important; +} + +.tabs-container { + min-height: 500px; + min-width: 500px; +}