Don't hide the back to top button if JS is disabled

This commit is contained in:
BBaoVanC 2021-11-23 17:14:59 -06:00
parent 40f6ed20fe
commit e9d8efce44
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
1 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,13 @@
<a id="back-to-top" href="#top">
{{ partial "icon.html" "chevron-up" }}
</a>
<noscript>
<style>
#back-to-top {
display: block;
}
</style>
</noscript>
</body>
</html>