Browse Source

Merge branch 'main' into task/migrate-angular-components-from-NgClass-to-class-bindings

pull/6843/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
f40546f07f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 1
      apps/client/src/app/pages/pricing/pricing-page.component.ts
  3. 6
      apps/client/src/styles.scss

6
CHANGELOG.md

@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
<<<<<<< task/migrate-angular-components-from-NgClass-to-class-bindings
### Changed ### Changed
- Migrated various components from `NgClass` to class bindings - Migrated various components from `NgClass` to class bindings
=======
### Fixed
- Fixed a visual regression in the bottom navigation bar on mobile
>>>>>>> main
## 3.2.0 - 2026-05-03 ## 3.2.0 - 2026-05-03

1
apps/client/src/app/pages/pricing/pricing-page.component.ts

@ -76,6 +76,7 @@ export class GfPricingPageComponent implements OnInit {
'Interactive Brokers', 'Interactive Brokers',
'Mintos', 'Mintos',
'Monefit SmartSaver', 'Monefit SmartSaver',
'Revolut',
'Swissquote', 'Swissquote',
'VIAC', 'VIAC',
'Zak' 'Zak'

6
apps/client/src/styles.scss

@ -520,15 +520,15 @@ ngx-skeleton-loader {
padding: 2rem 0; padding: 2rem 0;
} }
@media (min-width: 576px) {
flex-direction: row-reverse;
@include mat.tabs-overrides( @include mat.tabs-overrides(
( (
divider-height: 0 divider-height: 0
) )
); );
@media (min-width: 576px) {
flex-direction: row-reverse;
.mat-mdc-tab-header { .mat-mdc-tab-header {
background-color: rgba(var(--palette-foreground-base), 0.02); background-color: rgba(var(--palette-foreground-base), 0.02);
padding: 2rem 0; padding: 2rem 0;

Loading…
Cancel
Save