From c6eda097fc02f738be5504dd7a0b632ed6c2ce5a Mon Sep 17 00:00:00 2001 From: SATYA SB <107645008+satya07sb@users.noreply.github.com> Date: Wed, 4 Jun 2025 10:27:12 +0530 Subject: [PATCH] [Supporting the Platform - Azure Cosmos DB- Data Explorer - Graphs]: When page viewport is set to 320x256px, Content under 'Notification' section is not properly visible. (#2161) * [accessibility-3739643]: [Supporting the Platform - Azure Cosmos DB- Data Explorer - Graphs]: When page viewport is set to 320x256px, Content under 'Notification' section is not properly visible. * fix: Adjust notification console styles for better responsiveness. --------- Co-authored-by: Satyapriya Bai --- .../NotificationConsole/NotificationConsole.less | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Explorer/Menus/NotificationConsole/NotificationConsole.less b/src/Explorer/Menus/NotificationConsole/NotificationConsole.less index a03573a72..fb5aed51c 100644 --- a/src/Explorer/Menus/NotificationConsole/NotificationConsole.less +++ b/src/Explorer/Menus/NotificationConsole/NotificationConsole.less @@ -173,8 +173,20 @@ .message { flex-grow: 1; white-space:pre-wrap; + overflow-wrap: break-word; + word-break: break-word; } } } } + + @media (max-width: 768px) { + .notificationConsoleContents { + overflow-y: auto; + + .notificationConsoleData { + overflow: visible; + } + } + } } \ No newline at end of file