@@ -270,27 +270,23 @@ const Projects = (): JSX.Element => {
270270
271271 return (
272272 < >
273- < div
274- className = "lg:grid grid-cols-[auto_minmax(310px,750px)] xl:grid-cols-[auto_minmax(310px,1120px)] block justify-center"
275- style = { {
276- background :
277- 'linear-gradient(90deg, rgba(var(--ac-neutral-0)) 0%, rgba(var(--ac-neutral-0)) 50%, rgba(var(--ac-neutral-100)) 50%, rgba(var(--ac-neutral-100)) 100%)' ,
278- //'rgba(var(--ac-neutral-100))',
279- } }
280- >
281- < div className = "w-[310px] py-[43px] px-[20px] hidden lg:block" >
282- < ProjectFilterBody
283- allProjects = { allProjects }
284- resetFilters = { resetFilters }
285- showResetButton = { showResetButton }
286- hasCommunityProjects = { hasCommunityProjects }
287- creditClassFilterOptions = { creditClassFilterOptions }
288- buyingOptionsFilterOptions = { buyingOptionsFilterOptions }
289- />
273+ < div className = "lg:grid grid-cols-[1fr_auto_minmax(310px,750px)_1fr] xl:grid-cols-[1fr_auto_minmax(310px,1120px)_1fr] block justify-center" >
274+ < div className = "bg-grey-0" > </ div >
275+ < div className = "z-50 h-full bg-grey-0 shadow-[6px_0px_10px_-4px_rgba(0,0,0,0.10)] " >
276+ < aside className = "self-start w-[310px] py-[43px] px-[20px] hidden lg:block sticky top-0" >
277+ < ProjectFilterBody
278+ allProjects = { allProjects }
279+ resetFilters = { resetFilters }
280+ showResetButton = { showResetButton }
281+ hasCommunityProjects = { hasCommunityProjects }
282+ creditClassFilterOptions = { creditClassFilterOptions }
283+ buyingOptionsFilterOptions = { buyingOptionsFilterOptions }
284+ />
285+ </ aside >
290286 </ div >
291287 < div
292288 className = { cn (
293- 'bg-ac-neutral-100 pt-25 sm:pt-40 px-[16px] md:px -25 sm:25 pb-[80px] sm:pb-[100px] max-w-[1400px] grid gap-[18px] justify-center lg:justify-start grid-cols-[repeat(auto-fit,minmax(300px,1fr))]' ,
289+ 'bg-ac-neutral-100 pt-25 sm:pt-40 px-[16px] md:pr -25 md:pl-35 pb-[80px] sm:pb-[100px] max-w-[1400px] grid gap-[18px] justify-center lg:justify-start grid-cols-[repeat(auto-fit,minmax(300px,1fr))]' ,
294290 { 'lg:block' : projectsCount === 0 } ,
295291 { 'h-fit' : projectsCount !== 0 } ,
296292 ) }
@@ -334,6 +330,7 @@ const Projects = (): JSX.Element => {
334330 } }
335331 />
336332 </ div >
333+ < div className = "bg-bc-neutral-100" > </ div >
337334 </ div >
338335 { gettingStartedResourcesSection && IS_REGEN && (
339336 < GettingStartedResourcesSection
0 commit comments