Skip to content

Commit

Permalink
Mentor name style changed
Browse files Browse the repository at this point in the history
  • Loading branch information
MYSELF-SAYAN committed Feb 20, 2024
1 parent 2a46cdb commit 7d917b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/Organisation/Organisation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Organisation = () => {
<div style={{ display: "flex", flexDirection: "row" }}>
{project.mentor.map((mentor, index) => (
<div key={mentor.id}>
<p onClick={mentor.linkedin ? () => openInNewWindow(mentor.linkedin) : undefined}>
<p onClick={mentor.linkedin ? () => openInNewWindow(mentor.linkedin) : undefined} >
{mentor.name}
{index < project.mentor.length - 1 && ", "}
</p>
Expand Down
12 changes: 9 additions & 3 deletions src/pages/Organisation/Organisation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
cursor: pointer;
&:hover {
color: #babac0;
border-bottom: 1px solid #babac0;
// border-bottom: 1px solid #babac0;
}
}
}
Expand Down Expand Up @@ -107,7 +107,9 @@
flex-wrap: wrap;
margin: 0;
}

p{
text-decoration: underline;
}

}
.Organisation-project-card-tech {
Expand Down Expand Up @@ -186,11 +188,12 @@
font-size: 1.2rem;
font-weight: 500;
cursor: pointer;
text-decoration: underline;
}
&:hover {
p{
color: #78787e;
border-bottom: 1px solid #737376;
//border-bottom: 1px solid #737376;
}

}
Expand Down Expand Up @@ -322,6 +325,9 @@
h4 {
font-size: 1rem;
}
p{
text-decoration: underline;
}
}
.Organisation-project-card-tech {
h4 {
Expand Down

0 comments on commit 7d917b6

Please sign in to comment.