Skip to content

Commit

Permalink
Merge pull request #2832 from idodidodi/bugfix/#2783
Browse files Browse the repository at this point in the history
Bugfix/#2783
  • Loading branch information
patzick committed Apr 29, 2019
2 parents 62a9edd + 07f5c57 commit fb4fc2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Build ServiceWorker on Docker - @patzick (#2793)
- Product image load after comming back to online - @patzick (#2573)
- Insufficent validation for city field in checkout address - @lromanowicz (#2653)
- Incorrect hover activity on the 'filter by categories' in the search view on mobile - @idodidodi (#2783)

## [1.9.0-rc.2] - 2019.04.10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export default {

<style lang="scss" scoped>
@import "~theme/css/variables/colors";
$break-large: 1030px;
.categories {
&__heading {
Expand All @@ -72,7 +73,6 @@ export default {
border: 2px solid #333;
transition: all 0.2s ease;
&:hover,
&--active {
background: #333;
color: #fff;
Expand All @@ -81,11 +81,18 @@ export default {
&--active {
text-decoration: underline;
}
@media screen and (min-width: $break-large) {
&:hover{
background: #333;
color: #fff;
}
}
}
&__button-text {
display: block;
margin-right: 15px;
}
}
</style>

0 comments on commit fb4fc2d

Please sign in to comment.