We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24910c9 commit 42ed1acCopy full SHA for 42ed1ac
2 files changed
src/components/about/LargePortraitCard.tsx
@@ -8,7 +8,7 @@ import Avatar from "./Avatar";
8
export function Distinction({ person }) {
9
if (person.distinctionTitle.length !== 0) {
10
return person.distinctionTitle.map((distinction, index) => (
11
- <div>
+ <div key={index}>
12
<Link href={person.distinctionLink[index]}>
13
<DistinctionIcon className={styles.distinction_icon} />
14
{distinction}
src/css/custom.css
@@ -62,7 +62,7 @@
62
--ifm-spacing-7xl: 240px;
63
--ifm-spacing-8xl: 400px;
64
65
- --ifm-navbar-item-padding-horizontal: 2px
+ --ifm-navbar-item-padding-horizontal: 2px;
66
}
67
68
.flex-full-centered {
@@ -684,3 +684,9 @@ ul.row {
684
margin-left: 0;
685
width: 100%;
686
687
+
688
+.row {
689
+ display: flex;
690
+ flex-wrap: wrap;
691
+ margin: 0 0;
692
+}
0 commit comments