Revert changes to logo in SFW-only mode per request.

This commit is contained in:
Daniel Valentine 2022-12-17 13:18:30 -07:00
parent 4a9ea506bd
commit 498248050e
No known key found for this signature in database
GPG Key ID: C82492E4FF813823
2 changed files with 0 additions and 13 deletions

View File

@ -123,15 +123,6 @@ nav #libreddit {
vertical-align: -2px;
}
nav #libreddit-sfw {
vertical-align: -2px;
color: var(--green);
border: 1px solid var(--green);
padding: 5px;
box-sizing: border-box;
border-radius: 5px;
}
#settings_link {
opacity: 0.8;
margin-left: 10px;

View File

@ -29,11 +29,7 @@
<!-- NAVIGATION BAR -->
<nav>
<div id="logo">
{% if crate::utils::sfw_only() %}
<a id="libreddit-sfw" href="/" title="This instance is SFW-only.">libreddit.</a>
{% else %}
<a id="libreddit" href="/"><span id="lib">lib</span><span id="reddit">reddit.</span></a>
{% endif %}
<span id="version">v{{ env!("CARGO_PKG_VERSION") }}</span>
{% block subscriptions %}{% endblock %}
</div>