Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit 9cec3dc

Browse files
authored
Merge pull request #2530 from patzick/feature/#2458-filters-adjustment
Feature/#2458 filters adjustment
2 parents a0100f6 + 50e5518 commit 9cec3dc

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4343
- fix price is never below 0 and user can't add 0 or below 0 products to cart @RakowskiPrzemyslaw (#2437)
4444
- Check for placing single order in case of error in any payment module - @patzick (#2409)
4545
- Display prices in products added in offline mode. - @patzick (#2450)
46+
- Improved styles on recommentation filters - @patzick (#2458)
4647

4748
### Deprecated / Removed
4849
- `@vue-storefront/store` package deprecated - @filrak

src/themes/default/components/core/GenericSelector.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default {
2626
height: 40px;
2727
padding-left: 8px;
2828
padding-right: 8px;
29+
min-width: 50px;
2930
3031
&:hover,
3132
&:focus {

src/themes/default/components/core/blocks/Category/Sidebar.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@
5252
:content="price.label"
5353
/>
5454
</div>
55-
<div v-else>
55+
<div v-else class="sidebar__inline-selecors">
5656
<generic-selector
5757
context="category"
58-
class="price-select mb10 block"
58+
class="mr10 mb10 block"
5959
:code="filterIndex"
6060
v-for="(option, index) in filter"
6161
:key="index"
@@ -108,5 +108,9 @@ export default {
108108
align-items: center;
109109
min-height: 47px;
110110
}
111+
112+
&__inline-selecors {
113+
display: flex;
114+
}
111115
}
112116
</style>

0 commit comments

Comments
 (0)