Skip to content

Commit 877855e

Browse files
Merge pull request #5558 from topcoder-platform/thrive-bug-fixes
Thrive bug fixes
2 parents eb45050 + 2a9d3c7 commit 877855e

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,14 +353,14 @@ workflows:
353353
filters:
354354
branches:
355355
only:
356-
- free
356+
- thrive-bug-fixes
357357
# This is stage env for production QA releases
358358
- deployStag:
359359
context : org-global
360360
filters:
361361
branches:
362362
only:
363-
- develop
363+
- free
364364
# Production builds are exectuted
365365
# when PR is merged to the master
366366
# Don't change anything in this configuration

src/assets/images/icon-gesture.svg

Lines changed: 1 addition & 3 deletions
Loading

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);

src/shared/components/Contentful/TracksTree/ChildListRow/themes/default.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ $text-gray: #7f7f7f;
7777
flex-direction: column;
7878
margin-left: 22px;
7979
color: $text-black;
80-
cursor: pointer;
80+
align-items: flex-start;
8181

8282
> div {
8383
position: relative;

src/shared/containers/EDU/styles/home.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
align-items: center;
147147
background-image: url(assets/images/data-back.svg);
148148
width: 78px;
149-
height: 69px;
149+
height: 71px;
150150
}
151151

152152
.trackIconDesign {
@@ -207,6 +207,7 @@
207207

208208
@include xs-to-sm {
209209
margin: 32px 0 0 0;
210+
text-align: center;
210211
}
211212

212213
.trackTitle {
@@ -219,7 +220,7 @@
219220
text-align: left;
220221
text-transform: uppercase;
221222
margin-bottom: 13px;
222-
display: block;
223+
display: inline-block;
223224

224225
@include xs-to-sm {
225226
text-align: center;

0 commit comments

Comments
 (0)