Browse Source
Feature/increase tab height on mobile (#2712)
* Increase tab height on mobile
* Update changelog
pull/2717/head
Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/styles.scss
|
|
@ -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; |
|
|
|
|
|
|
|