From d71ab10eedf00705afbe082adc1428b08ccec919 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 10 Jul 2022 21:44:23 +0200 Subject: [PATCH] Bugfix/fix content height of account detail dialog (#1068) * Fix height * Update changelog --- CHANGELOG.md | 4 ++++ .../account-detail-dialog.component.scss | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e2bed58..92e5c25ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Extended the investment timeline grouped by month +### Fixed + +- Fixed the content height of the account detail dialog + ## 1.167.0 - 07.07.2022 ### Added diff --git a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.scss b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.scss index 5d4e87f30..ce1c7d599 100644 --- a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.scss +++ b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.component.scss @@ -1,3 +1,7 @@ :host { display: block; + + .mat-dialog-content { + max-height: unset; + } }