Spaces:
Running
Running
update hero
Browse files
app/src/components/Hero.astro
CHANGED
|
@@ -117,9 +117,7 @@ const pdfFilename = `${slugify(pdfBase)}.pdf`;
|
|
| 117 |
) : null;
|
| 118 |
return (
|
| 119 |
<li>
|
| 120 |
-
{a.url ? <a href={a.url}>{a.name}</a> : a.name}
|
| 121 |
-
{supers}
|
| 122 |
-
{i < normalizedAuthors.length - 1 && <span set:html=", " />}
|
| 123 |
</li>
|
| 124 |
);
|
| 125 |
})}
|
|
@@ -428,6 +426,7 @@ const pdfFilename = `${slugify(pdfBase)}.pdf`;
|
|
| 428 |
}
|
| 429 |
.authors li {
|
| 430 |
white-space: nowrap;
|
|
|
|
| 431 |
}
|
| 432 |
.affiliations {
|
| 433 |
margin: 0;
|
|
|
|
| 117 |
) : null;
|
| 118 |
return (
|
| 119 |
<li>
|
| 120 |
+
{a.url ? <a href={a.url}>{a.name}</a> : a.name}{supers}{i < normalizedAuthors.length - 1 && <span set:html=", " />}
|
|
|
|
|
|
|
| 121 |
</li>
|
| 122 |
);
|
| 123 |
})}
|
|
|
|
| 426 |
}
|
| 427 |
.authors li {
|
| 428 |
white-space: nowrap;
|
| 429 |
+
padding:0;
|
| 430 |
}
|
| 431 |
.affiliations {
|
| 432 |
margin: 0;
|