diff --git a/src/components/PriceFilter/PriceFilterPlain.css b/src/components/PriceFilter/PriceFilterPlain.css
index 1fae6d29..15239cd2 100644
--- a/src/components/PriceFilter/PriceFilterPlain.css
+++ b/src/components/PriceFilter/PriceFilterPlain.css
@@ -34,6 +34,10 @@
cursor: pointer;
}
+.formWrapper {
+ padding-left: 20px;
+}
+
.clearButton {
@apply --marketplaceH5FontStyles;
font-weight: var(--fontWeightMedium);
diff --git a/src/components/PriceFilter/PriceFilterPlain.js b/src/components/PriceFilter/PriceFilterPlain.js
index 89711b22..560a652e 100644
--- a/src/components/PriceFilter/PriceFilterPlain.js
+++ b/src/components/PriceFilter/PriceFilterPlain.js
@@ -73,20 +73,22 @@ class PriceFilterPlainComponent extends Component {
- {
- this.filterContent = node;
- }}
- min={min}
- max={max}
- step={step}
- liveEdit
- isOpen={this.state.isOpen}
- />
+
+
{
+ this.filterContent = node;
+ }}
+ min={min}
+ max={max}
+ step={step}
+ liveEdit
+ isOpen={this.state.isOpen}
+ />
+
);
}