Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
clara7227 committed Oct 11, 2024
1 parent 600fb06 commit e12e81c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/team/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export default function Team(props) {
{/* <Header route={"/team"} /> */}
<main className="standard_margin">
<Heading level="h2">{t("team.title")}</Heading>
{/* <section className="mx-auto grid xs:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8"> */}
<section className="mx-auto flex flex-wrap gap-8 justify-center">
<section className="mx-auto grid xs:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8 md:gap-4 ">
{/* <section className="mx-auto flex flex-wrap gap-8 justify-center"> */}
{team["UPM Team"]?.members ? renderMembers(team["UPM Team"].members) : <p>No members found.</p>}
</section>
</main>
Expand Down
2 changes: 1 addition & 1 deletion components/core/Cards.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ const Card = React.forwardRef(
{name}
</CardTitle>
{ role && (<CardDescription type="short-p">{role}</CardDescription>)}
{email && <CardDescription className={"font-semibold"}>{email}</CardDescription>}
{email && <CardDescription className={"font-semibold break-words text-wrap"}>{email}</CardDescription>}
</CardContent>
)}
{/* {( email &&
Expand Down

0 comments on commit e12e81c

Please sign in to comment.