Feature/increase tab height on mobile (#2712)

* Increase tab height on mobile

* Update changelog
pull/2717/head
Thomas Kaul 6 months ago committed by GitHub
parent d4c939e41d
commit cbea8ac9d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Increased the height of the tabs on mobile
- Improved the language localization for German (`de`)
## 2.28.0 - 2023-12-02

@ -539,6 +539,12 @@ ngx-skeleton-loader {
--mdc-tab-indicator-active-indicator-color: transparent;
}
@media (max-width: 575.98px) {
.mat-mdc-tab-link {
--mdc-secondary-navigation-tab-container-height: 3rem;
}
}
@media (min-width: 576px) {
flex-direction: row-reverse;

Loading…
Cancel
Save