Skip to content

Commit 013f6c3

Browse files
fixed topcoder-platform#198 filter list overlap issue
1 parent 9bae199 commit 013f6c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/shared/components/challenge-listing/Listing/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default function Listing({
9393
};
9494

9595
return (
96-
<div styleName="challengeCardContainer">
96+
<div styleName="challengeCardContainer" id="challengeCardContainer">
9797
{auth.user ? getBucket(BUCKETS.MY) : null}
9898
{getBucket(BUCKETS.OPEN_FOR_REGISTRATION)}
9999
{getBucket(BUCKETS.ONGOING)}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default function ChallengeListing(props) {
130130
{challengeCardContainer}
131131

132132
<div styleName="sidebar-container-desktop">
133-
<Sticky top={20}>
133+
<Sticky top={20} bottomBoundary="#challengeCardContainer">
134134
<Sidebar hideTcLinksInFooter={props.hideTcLinksInFooter} />
135135
</Sticky>
136136
</div>

0 commit comments

Comments
 (0)