Skip to content

Commit 207111f

Browse files
committed
Test fix for TCO Eligible Challenges text
1 parent f3f775d commit 207111f

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ workflows:
351351
only:
352352
- develop
353353
- free
354+
- justin-fixes
354355
# This is alternate dev env for parallel testing
355356
- "build-test":
356357
context : org-global

src/shared/components/challenge-listing/Filters/FiltersPanel/index.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -666,8 +666,9 @@ export default function FiltersPanel({
666666
</React.Fragment>
667667
)
668668
}
669-
{isTcoChallengesVisible
670-
&& (
669+
{
670+
isTcoChallengesVisible
671+
&& (
671672
<React.Fragment>
672673
<div styleName="filter-row tco-challenges-filter">
673674
<span
@@ -695,9 +696,8 @@ export default function FiltersPanel({
695696
</div>
696697
</div>
697698
</React.Fragment>
698-
)
699+
)
699700
}
700-
701701
</div>
702702

703703
{

src/shared/components/challenge-listing/Filters/FiltersPanel/style.scss

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,8 @@ hr.hr {
120120

121121
.recommended-select-label,
122122
.tco-select-label {
123-
width: 45%;
124123
margin-bottom: 16px;
125124
display: flex;
126-
white-space: nowrap;
127125
line-height: 30px;
128126
justify-content: flex-start;
129127
margin-top: 15px;
@@ -133,8 +131,6 @@ hr.hr {
133131
}
134132

135133
@include sm-to-md {
136-
width: 50%;
137-
138134
> div {
139135
display: inline-flex;
140136
flex-direction: row-reverse;
@@ -623,16 +619,13 @@ hr.hr {
623619

624620
.recommended-challenge-tooltip,
625621
.tco-challenge-tooltip {
626-
position: absolute;
627-
left: 210px;
622+
position: relative;
623+
left: 7px;
624+
top: 18px;
628625
display: flex;
629626
flex-direction: column;
630627
justify-content: center;
631628
height: 100%;
632-
633-
@include xs-to-md {
634-
left: 210px;
635-
}
636629
}
637630
}
638631
}

0 commit comments

Comments
 (0)