We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bae199 commit 013f6c3Copy full SHA for 013f6c3
src/shared/components/challenge-listing/Listing/index.jsx
@@ -93,7 +93,7 @@ export default function Listing({
93
};
94
95
return (
96
- <div styleName="challengeCardContainer">
+ <div styleName="challengeCardContainer" id="challengeCardContainer">
97
{auth.user ? getBucket(BUCKETS.MY) : null}
98
{getBucket(BUCKETS.OPEN_FOR_REGISTRATION)}
99
{getBucket(BUCKETS.ONGOING)}
src/shared/components/challenge-listing/index.jsx
@@ -130,7 +130,7 @@ export default function ChallengeListing(props) {
130
{challengeCardContainer}
131
132
<div styleName="sidebar-container-desktop">
133
- <Sticky top={20}>
+ <Sticky top={20} bottomBoundary="#challengeCardContainer">
134
<Sidebar hideTcLinksInFooter={props.hideTcLinksInFooter} />
135
</Sticky>
136
</div>
0 commit comments