Add arrow decorations to footer's back to top link

This commit is contained in:
Helen Chong 2024-06-11 02:07:28 +08:00
parent f19feef807
commit 7fc1334a56
1 changed files with 19 additions and 1 deletions

View File

@ -13,7 +13,7 @@
</nav>
{%- endif -%}
<p><a href="#page-top">Back to Top 🡱</a></p>
<p><a class="footer__top-link" href="#page-top">Back to Top</a></p>
{%- include "global/top-btn.njk" %}
</footer>
@ -55,6 +55,24 @@
justify-self: center;
}
.footer__top-link::before,
.footer__top-link::after {
--arrow-margin: 0.3em;
content: "";
display: inline-block;
border-bottom: 0.6rem solid currentColor;
border-left: 0.4rem solid transparent;
border-right: 0.4rem solid transparent;
}
.footer__top-link::before {
margin: 0 var(--arrow-margin) 0 0;
}
.footer__top-link::after {
margin: 0 0 0 var(--arrow-margin);
}
/* Screen sizes larger than mobile */
@media only screen and (min-width: 30rem) {
.footer {