Feature/add hover effect to page tabs (#764)

* Add hover effect

* Update changelog
This commit is contained in:
Thomas Kaul
2022-03-21 18:59:00 +01:00
committed by GitHub
parent 86a1589834
commit e2faaf6faa
4 changed files with 24 additions and 0 deletions

View File

@@ -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

View File

@@ -29,6 +29,12 @@
color: rgba(var(--palette-primary-500), 1);
opacity: 1;
}
.mat-tab-link {
&:hover {
opacity: 0.75;
}
}
}
}
}

View File

@@ -30,6 +30,12 @@
color: rgba(var(--palette-primary-500), 1);
opacity: 1;
}
.mat-tab-link {
&:hover {
opacity: 0.75;
}
}
}
}
}

View File

@@ -28,6 +28,12 @@
color: rgba(var(--palette-primary-500), 1);
opacity: 1;
}
.mat-tab-link {
&:hover {
opacity: 0.75;
}
}
}
}
}