Skip to content

Commit 7d917b6

Browse files
committed
Mentor name style changed
1 parent 2a46cdb commit 7d917b6

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/pages/Organisation/Organisation.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const Organisation = () => {
5252
<div style={{ display: "flex", flexDirection: "row" }}>
5353
{project.mentor.map((mentor, index) => (
5454
<div key={mentor.id}>
55-
<p onClick={mentor.linkedin ? () => openInNewWindow(mentor.linkedin) : undefined}>
55+
<p onClick={mentor.linkedin ? () => openInNewWindow(mentor.linkedin) : undefined} >
5656
{mentor.name}
5757
{index < project.mentor.length - 1 && ", "}
5858
</p>

src/pages/Organisation/Organisation.scss

+9-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
cursor: pointer;
4949
&:hover {
5050
color: #babac0;
51-
border-bottom: 1px solid #babac0;
51+
// border-bottom: 1px solid #babac0;
5252
}
5353
}
5454
}
@@ -107,7 +107,9 @@
107107
flex-wrap: wrap;
108108
margin: 0;
109109
}
110-
110+
p{
111+
text-decoration: underline;
112+
}
111113

112114
}
113115
.Organisation-project-card-tech {
@@ -186,11 +188,12 @@
186188
font-size: 1.2rem;
187189
font-weight: 500;
188190
cursor: pointer;
191+
text-decoration: underline;
189192
}
190193
&:hover {
191194
p{
192195
color: #78787e;
193-
border-bottom: 1px solid #737376;
196+
//border-bottom: 1px solid #737376;
194197
}
195198

196199
}
@@ -322,6 +325,9 @@
322325
h4 {
323326
font-size: 1rem;
324327
}
328+
p{
329+
text-decoration: underline;
330+
}
325331
}
326332
.Organisation-project-card-tech {
327333
h4 {

0 commit comments

Comments
 (0)