Skip to content

Commit fa3806b

Browse files
Nursoltan SaipoldaNursoltan Saipolda
Nursoltan Saipolda
authored and
Nursoltan Saipolda
committed
fix lint issue
1 parent 3d46ca8 commit fa3806b

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

src/shared/components/DateRangePicker/style.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@
2121

2222
.isRange {
2323
:global {
24-
.rdrStartEdge, .rdrEndEdge {
24+
.rdrStartEdge,
25+
.rdrEndEdge {
2526
color: $listing-checkbox-green !important;
2627
}
28+
2729
.rdrDayHovered {
2830
background: $listing-checkbox-green !important;
2931
}
32+
3033
.rdrDay {
3134
.rdrInRange {
3235
background: lighten($listing-checkbox-green, 30%) !important;

src/shared/components/challenge-listing/ChallengeCard/Prize/Tip/style.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ $prize-space-10: $base-unit * 2;
1616

1717
h1 {
1818
@include roboto-regular;
19+
1920
border: none;
2021
color: $tc-white;
2122
font-size: 14px;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ export default function FiltersPanel({
510510
onSwitch={(e) => {
511511
let { types } = filterState;
512512

513-
if (e.target.checked) {
513+
if (e) {
514514
types = types.concat(option.value);
515515
} else {
516516
types = types.filter(type => type !== option.value);

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,6 @@ hr.hr {
601601
background-color: #137d60 !important;
602602
color: $tc-white !important;
603603
}
604-
605604
}
606605
}
607606
}

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -131,16 +131,6 @@ $challenge-radius-4: $corner-radius * 2;
131131
}
132132
}
133133

134-
.recommended-plus-tag {
135-
margin-left: 3px;
136-
display: inline-block;
137-
background-color: $tc-white;
138-
139-
button:hover {
140-
background-color: #d4d4d4 !important;
141-
}
142-
}
143-
144134
.tag {
145135
button {
146136
border-radius: 2px;
@@ -155,6 +145,16 @@ $challenge-radius-4: $corner-radius * 2;
155145
}
156146
}
157147

148+
.recommended-plus-tag {
149+
margin-left: 3px;
150+
display: inline-block;
151+
background-color: $tc-white;
152+
153+
button:hover {
154+
background-color: #d4d4d4 !important;
155+
}
156+
}
157+
158158
.additionalTagWrapper {
159159
background: $tc-black;
160160
display: inline-block;

0 commit comments

Comments
 (0)