From 356d0fb2567af2eb1a1f7dc8c04d87cd69048da5 Mon Sep 17 00:00:00 2001 From: Asish Kumar Date: Thu, 9 Apr 2026 17:50:51 +0000 Subject: [PATCH] fix(import-dialog): keep long notice lists inside the viewport Cap the import activities dialog content to the viewport height and allow the dialog content region to scroll. This keeps the Back and Import actions reachable when many import notices are rendered. Document the fix in the changelog. --- CHANGELOG.md | 1 + .../import-activities-dialog/import-activities-dialog.scss | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ebab8184..e9a41a51a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed the import activities dialog so long notice lists remain scrollable within the viewport - Improved the style of the activity type component ## 2.253.0 - 2026-03-06 diff --git a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.scss b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.scss index 64f488e36..47f24a541 100644 --- a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.scss +++ b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.scss @@ -2,7 +2,9 @@ display: block; .mat-mdc-dialog-content { - max-height: unset; + max-height: calc(100vh - 10rem); + min-height: 0; + overflow-y: auto; a { color: rgba(var(--palette-primary-500), 1);