sigma!
All checks were successful
/ test (push) Successful in 13s

This commit is contained in:
Soph :3 2024-07-24 17:20:06 +03:00
parent 1260c98bfb
commit 5eab5815e1
Signed by: sophie
GPG key ID: EDA5D222A0C270F2
2 changed files with 10 additions and 3 deletions

View file

@ -41,7 +41,9 @@ a {
word-wrap: break-word;
overflow: auto;
}
.giscus-outer {
max-height:20vh;
}
.e-mail {
font-size: small;
@ -107,5 +109,10 @@ h6 {
flex-direction: row;
max-height: auto;
}
.five {
max-height: unset;
}
.giscus-outer {
max-height:unset;
}
}

View file

@ -18,7 +18,7 @@ export function Giscus({ searchTerm }: { searchTerm: string }) {
delete config[x[0]];
config["data-" + x[0]] = x[1];
}
return <div style="max-height:20vh;">
return <div class="giscus-outer">
<script src="https://giscus.app/client.js" {...config} crossorigin="anonymous" async></script>
</div>
}