fix(web): better footer

This commit is contained in:
əlemi 2024-05-21 15:25:47 +02:00
parent 49cee6cafa
commit 22ad304417
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 5 additions and 3 deletions

View file

@ -99,6 +99,9 @@
hr.sep {
border: 1px solid rgba(var(--accent-rgb), 0.45);
}
div.sep-top {
border-top: 2px solid rgba(var(--accent-rgb), 0.45);
}
hr.sticky {
position: sticky;
z-index: 100;

View file

@ -131,9 +131,8 @@ pub fn App() -> impl IntoView {
</div>
</div>
<footer>
<div>
<hr class="sep" />
<span class="footer" >"\u{26fc} woven under moonlight :: "<a href="https://git.alemi.dev/upub.git" target="_blank" >src</a>" :: "<a href="javascript:window.scrollTo({top:0, behavior:'smooth'})">top</a></span>
<div class="sep-top">
<span class="footer" >"\u{26fc} woven under moonlight :: "<a class="clean" href="https://git.alemi.dev/upub.git" target="_blank" >src</a>" :: "<a class="clean" href="javascript:window.scrollTo({top:0, behavior:'smooth'})">top</a></span>
</div>
</footer>
}