Skip to content

Commit

Permalink
added footer and opacity in community-university
Browse files Browse the repository at this point in the history
  • Loading branch information
Aamil13 committed May 30, 2024
1 parent c7546fd commit 264fd48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/app/communityuniversity/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Footer from '@/components/Footer/Footer'
import CommunityProfilePost from '@/components/communityProfile/CommunityProfilePost'
import GroupInfo from '@/components/communityUniversity/GroupInfo'
import GroupSideBsr from '@/components/communityUniversity/GroupSideBsr'
Expand Down Expand Up @@ -29,6 +30,7 @@ const page = () => {
</div>
</div>
</div>
<Footer />
</div>
)
}
Expand Down
1 change: 1 addition & 0 deletions src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import './Footer.css'

import Image from 'next/image'
Expand Down
2 changes: 1 addition & 1 deletion src/components/communityUniversity/GroupFilterPopUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type Props = {
const GroupFilterPopUp = ({ setShowPopUp }: Props) => {
return (
<>
<div className="fixed w-full h-[100%] top-0 left-0 backdrop-blur-sm z-10"></div>
<div className="fixed w-full h-[100%] top-0 left-0 bg-black opacity-50 z-10"></div>
<div className={`fixed w-96 max-sm:w-11/12 z-50 top-1/3 bg-white flex flex-col items-center gap-6 shadow-lg px-10 py-6 rounded-lg`}>
<div className="flex justify-end w-full">
{' '}
Expand Down

0 comments on commit 264fd48

Please sign in to comment.