diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bde0c960..3691a51f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Changed + +- Improved the alignment in the portfolio performance chart + ### Fixed - Fixed the currency in the error log of the exchange rate data service diff --git a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html index 1a931f666..652d30b63 100644 --- a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html +++ b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html @@ -1,15 +1,17 @@
- @if (errors?.length > 0 && !isLoading) { -
- -
- } +
+ @if (errors?.length > 0 && !isLoading) { + + } +
-
+
{{ unit }}
diff --git a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.scss b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.scss index 398a2981a..6f703255f 100644 --- a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.scss +++ b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.scss @@ -1,8 +1,18 @@ :host { display: block; - .status { + .currency-container, + .status-container { + flex: 1; + min-width: 2.5rem; + } + + .status-container { font-size: 1.33rem; + + ion-icon { + pointer-events: all; + } } .value-container {