diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e3b89c..4e7edf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added - 'step' property to slider input +- hover state to sidebar items ## [2.2.0] - 2020-03-14 ### Added diff --git a/src/app/components/sidebar/style.scss b/src/app/components/sidebar/style.scss index 3a01ca6..8ea2754 100644 --- a/src/app/components/sidebar/style.scss +++ b/src/app/components/sidebar/style.scss @@ -28,6 +28,7 @@ align-items: center; color: #5d5d5d; font-weight: 600; + cursor: pointer; &.active { //background-color: #0084ff; @@ -38,6 +39,10 @@ background-color: #0084ff; } } + + &:hover { + background-color: rgba(0,0,0,0.1); + } .section-icon { background-color: #afb9c0;