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

* Add hover effect

* Update changelog
pull/768/head
Thomas Kaul 2 years ago committed by GitHub
parent 86a1589834
commit e2faaf6faa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save