Skip to content

Commit 40ecc08

Browse files
Merge pull request #143 from HaudinFlorence/fix_issue_for_longer_names_on_hover
Extend available space for the full name of employees on small portrait cards.
2 parents 9d2e6c5 + deabae4 commit 40ecc08

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/about/SmallPortraitCard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import SocialMediaContacts from "./SocialMediaContacts";
44
import { useRef, useState } from "react";
55
import LargePortraitCard from "./LargePortraitCard";
66
import Avatar from "./Avatar";
7-
import Link from "@docusaurus/Link";
87

98
const contentStyle = {
109
background: "white",

src/components/about/SubTeam.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export default function SubTeam({
1515
<div className="col">
1616
<PopupPortrait
1717
person={person}
18-
1918
/>
2019
</div>
2120
</li>

src/components/about/styles.module.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
color: var(--ifm-color-primary-p2);
66
border-radius: 8px;
77
box-shadow: 0px 0px 8px 1px #c8c8c7;
8-
padding: var(--ifm-spacing-lg) var(--ifm-spacing-md);
8+
padding: var(--ifm-spacing-lg) var(--ifm-spacing-xs);
99
margin-bottom: var(--ifm-spacing-xl);
1010
}
1111

@@ -15,6 +15,7 @@
1515
text-decoration: #0000EE underline;
1616
}
1717

18+
1819
.value_text p {
1920
font-family: var(--ifm-font-family-roboto);
2021
font-size: 14px;
@@ -50,6 +51,7 @@ div .row {
5051
line-height: 24px;
5152
letter-spacing: 0.15px;
5253
margin: var(--ifm-spacing-xs) 0;
54+
width: 100%
5355
}
5456

5557
.small_card_position {

0 commit comments

Comments
 (0)