Browse Source
Feature/add hover effect to page tabs (#764)
* Add hover effect
* Update changelog
pull/768/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
24 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/admin/admin-page.scss
-
apps/client/src/app/pages/home/home-page.scss
-
apps/client/src/app/pages/zen/zen-page.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/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Added a hover effect to the page tabs |
|
|
|
|
|
|
|
## 1.128.0 - 19.03.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -29,6 +29,12 @@ |
|
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
|
opacity: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.mat-tab-link { |
|
|
|
&:hover { |
|
|
|
opacity: 0.75; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -30,6 +30,12 @@ |
|
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
|
opacity: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.mat-tab-link { |
|
|
|
&:hover { |
|
|
|
opacity: 0.75; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -28,6 +28,12 @@ |
|
|
|
color: rgba(var(--palette-primary-500), 1); |
|
|
|
opacity: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.mat-tab-link { |
|
|
|
&:hover { |
|
|
|
opacity: 0.75; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|