Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
SJS830 committed Dec 3, 2023
1 parent 758e838 commit e5222ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function RootLayout({ children }) {
/>
</head>

<body className={inter.className}>
<body className={`${inter.className} overflow-x-clip`}>
<ThemeProvider>
<Navbar />
{children}
Expand Down
2 changes: 1 addition & 1 deletion app/opportunities/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Opportunities() {
</div>
</HorizontalRuling>

<div className="w-[200vw]">
<div className="w-[100vw]">
<p className="whitespace-pre-line text-[15px] text-text pt-[40px] ml-[50vw] -translate-x-1/2 max-w-[calc(min(600px,90vw))]">
{s["Info"]}
</p>
Expand Down
14 changes: 7 additions & 7 deletions app/team/MemberCard.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export default function MemberCard({ name, title, image, bio }) {
return (
<div className='relative rounded-lg w-[310px] bg-primary lg:mb-0 mb-[25px] text-text'>
<div className='w-[310px] h-[310px] overflow-hidden'>
<img className='rounded-t-lg object-cover' src={image} />
<div className="relative rounded-lg w-[310px] bg-primary lg:mb-0 mb-[25px] text-text">
<div className="w-[310px] h-[310px] overflow-hidden">
<img className="rounded-t-lg object-cover" src={image} />
</div>

<div className='group min-h-[60px]'>
<div className='mx-2'>
<div className="group min-h-[60px]">
<div className="mx-2">
<p
data={name}
bio={bio}
className='font-bold underline group-hover:no-underline text-[20px] before:content-[attr(data)] group-hover:before:content-[attr(bio)]'
className="font-bold underline group-hover:no-underline text-[20px] before:content-[attr(data)] group-hover:before:content-[attr(bio)]"
></p>
<p
data={title}
Expand All @@ -19,5 +19,5 @@ export default function MemberCard({ name, title, image, bio }) {
</div>
</div>
</div>
)
);
}

0 comments on commit e5222ae

Please sign in to comment.