Fixed header breaking view link (#131)
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Shahan Nedadahandeh 2023-01-01 16:27:58 -05:00
parent 65a5bdbd1c
commit 2202fccb11
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
html {
scroll-behavior: smooth;
scroll-padding-top: calc(92rem / 16);
}
body {

View File

@ -27,7 +27,9 @@ export function ContributorGroup({ group }: ContributorGroupProps) {
.map((d, idx) => {
return (
<li key={idx}>
<a href={d.link}>{d.name}</a>
<a href={d.link} target="_blank" rel="noreferrer">
{d.name}
</a>
</li>
);
})}