parent
1260c98bfb
commit
5eab5815e1
|
@ -41,7 +41,9 @@ a {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
.giscus-outer {
|
||||||
|
max-height:20vh;
|
||||||
|
}
|
||||||
|
|
||||||
.e-mail {
|
.e-mail {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
|
@ -107,5 +109,10 @@ h6 {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
max-height: auto;
|
max-height: auto;
|
||||||
}
|
}
|
||||||
|
.five {
|
||||||
|
max-height: unset;
|
||||||
|
}
|
||||||
|
.giscus-outer {
|
||||||
|
max-height:unset;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -18,7 +18,7 @@ export function Giscus({ searchTerm }: { searchTerm: string }) {
|
||||||
delete config[x[0]];
|
delete config[x[0]];
|
||||||
config["data-" + x[0]] = x[1];
|
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>
|
<script src="https://giscus.app/client.js" {...config} crossorigin="anonymous" async></script>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
Loading…
Reference in a new issue