Browse Source
Feature/improve skeleton loader size (#425)
* Improve skeleton loader size
* Update changelog
pull/426/head
Thomas Kaul
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
9 additions and
2 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.html
-
libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.scss
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the skeleton loader size of the portfolio proportion chart component |
|
|
|
|
|
|
|
|
## 1.62.0 - 17.10.2021 |
|
|
## 1.62.0 - 17.10.2021 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -1,9 +1,9 @@ |
|
|
<ngx-skeleton-loader |
|
|
<ngx-skeleton-loader |
|
|
*ngIf="isLoading" |
|
|
*ngIf="isLoading" |
|
|
animation="pulse" |
|
|
animation="pulse" |
|
|
|
|
|
class="h-100" |
|
|
[theme]="{ |
|
|
[theme]="{ |
|
|
height: '15rem', |
|
|
height: '100%' |
|
|
width: '100%' |
|
|
|
|
|
}" |
|
|
}" |
|
|
></ngx-skeleton-loader> |
|
|
></ngx-skeleton-loader> |
|
|
<canvas |
|
|
<canvas |
|
|
|
@ -1,3 +1,4 @@ |
|
|
:host { |
|
|
:host { |
|
|
|
|
|
aspect-ratio: 1; |
|
|
display: block; |
|
|
display: block; |
|
|
} |
|
|
} |
|
|