Asish Kumar
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.scss
|
|
@ -126,6 +126,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed the import activities dialog so long notice lists remain scrollable within the viewport |
|
|
- Improved the style of the activity type component |
|
|
- Improved the style of the activity type component |
|
|
|
|
|
|
|
|
## 2.253.0 - 2026-04-06 |
|
|
## 2.253.0 - 2026-04-06 |
|
|
|
|
|
@ -2,7 +2,9 @@ |
|
|
display: block; |
|
|
display: block; |
|
|
|
|
|
|
|
|
.mat-mdc-dialog-content { |
|
|
.mat-mdc-dialog-content { |
|
|
max-height: unset; |
|
|
max-height: calc(100vh - 10rem); |
|
|
|
|
|
min-height: 0; |
|
|
|
|
|
overflow-y: auto; |
|
|
|
|
|
|
|
|
a { |
|
|
a { |
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
|