Change instance info link text to emoji.

This commit is contained in:
Daniel Valentine 2023-01-30 01:51:46 -07:00
parent c16266e5cf
commit 470901f812
No known key found for this signature in database
GPG Key ID: C82492E4FF813823
2 changed files with 8 additions and 2 deletions

View File

@ -169,7 +169,7 @@ main {
/* Body footer. */
body > footer {
display: flex;
justify-content: end;
justify-content: center;
margin: 20px;
}
@ -180,9 +180,15 @@ body > footer {
color: var(--text);
cursor: pointer;
display: inline-flex;
font-size: 300%;
font-weight: bold;
padding: 0.5em;
}
.info-button > a:hover {
text-decoration: none;
}
/* / Body footer. */
/* Footer in content block. */

View File

@ -68,7 +68,7 @@
{% block footer %}
<footer>
<div class="info-button">
<a href="/info">View instance information</a>
<a href="/info" title="View instance information">&#x24D8;</a>
</div>
</footer>
{% endblock %}