Skip to content

Commit 93d0bd2

Browse files
committed
Fix #5536
1 parent 610751a commit 93d0bd2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/shared/components/Contentful/SearchPageFilter/SearchPageFilter.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export class SearchPageFilterInner extends Component {
110110
<div className={theme.section}>
111111
<button
112112
type="button"
113-
className={`${theme['section-header']} ${isShowSubCategory ? theme.expanded : ''}`}
113+
className={`${theme['section-header']} ${!isShowSubCategory ? theme.expanded : ''}`}
114114
onClick={() => { this.setState({ isShowSubCategory: !isShowSubCategory }); }}
115115
>
116116
<span className={theme['section-title']}>sub category</span>

src/shared/components/Contentful/SearchPageFilter/themes/default.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ $green-color: #137d60;
102102
}
103103

104104
.expanded {
105+
margin-bottom: 0 !important;
106+
105107
svg {
106108
-moz-transform: scale(-1, -1);
107109
-o-transform: scale(-1, -1);

0 commit comments

Comments
 (0)