Browse Source
Task/improve style of tabs in various dialogs on mobile (#7481)
* Improve tabs style
* Update changelog
pull/7480/head^2
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
17 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
-
apps/client/src/styles.scss
|
|
|
@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Improved the style of the tabs in the account detail dialog on mobile |
|
|
|
- Improved the style of the tabs in the holding detail dialog on mobile |
|
|
|
- Improved the style of the tabs in the asset profile dialog of the admin control panel on mobile |
|
|
|
- Improved the style of the empty state in the _Fear & Greed Index_ component |
|
|
|
- Improved the style of the type filter in the activities table component (experimental) |
|
|
|
- Improved the performance of the property service by caching the properties in memory |
|
|
|
|
|
|
|
@ -33,6 +33,7 @@ |
|
|
|
<mat-tab-group |
|
|
|
animationDuration="0ms" |
|
|
|
class="mb-4" |
|
|
|
[disablePagination]="true" |
|
|
|
[mat-stretch-tabs]="false" |
|
|
|
> |
|
|
|
<mat-tab> |
|
|
|
|
|
|
|
@ -105,6 +105,7 @@ |
|
|
|
|
|
|
|
<mat-tab-group |
|
|
|
animationDuration="0ms" |
|
|
|
[disablePagination]="true" |
|
|
|
[dynamicHeight]="true" |
|
|
|
[mat-stretch-tabs]="false" |
|
|
|
> |
|
|
|
|
|
|
|
@ -39,6 +39,7 @@ |
|
|
|
<mat-tab-group |
|
|
|
animationDuration="0ms" |
|
|
|
class="mb-4" |
|
|
|
[disablePagination]="true" |
|
|
|
[mat-stretch-tabs]="false" |
|
|
|
> |
|
|
|
<mat-tab> |
|
|
|
|
|
|
|
@ -411,6 +411,17 @@ ngx-skeleton-loader { |
|
|
|
.mdc-dialog__content { |
|
|
|
--mat-dialog-supporting-text-color: rgba(var(--dark-primary-text)); |
|
|
|
} |
|
|
|
|
|
|
|
@media (max-width: 575.98px) { |
|
|
|
// Tabs fill the available width on mobile |
|
|
|
.mat-mdc-tab-group { |
|
|
|
.mat-mdc-tab { |
|
|
|
flex-grow: 1; |
|
|
|
min-width: unset; |
|
|
|
padding: 0 0.5rem; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.mat-mdc-fab, |
|
|
|
|