No border radius for main logo

This commit is contained in:
Dirk Alders 2023-03-26 14:59:08 +02:00
parent a8d41059c5
commit e4a7af36ea
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
{% block modal %}{% endblock %}
<form class="titlebar container" action="{% url "search" %}">
<a class="page-logo" href="/"><img style="border-radius: 25%;" src="{{ settings.page_image.url }}" alt="Logo" title="{{ title }}"></a>
<a class="page-logo" href="/"><img src="{{ settings.page_image.url }}" alt="Logo" title="{{ title }}"></a>
<span class="title_hide">{{ title }}</span>
<input type="text" placeholder="{% trans "Search..." %}" name="q">
</form>

View File

@ -20,7 +20,7 @@
{% block modal %}{% endblock %}
<form class="titlebar container" action="{% url "search" %}">
<a class="page-logo" href="/"><img style="border-radius: 25%;" src="{{ settings.page_image.url }}" alt="Logo" title="{{ title }}"></a>
<a class="page-logo" href="/"><img src="{{ settings.page_image.url }}" alt="Logo" title="{{ title }}"></a>
<span class="title_hide">{{ title }}</span>
<input type="text" placeholder="{% trans "Search..." %}" name="q">
</form>

View File

@ -20,7 +20,7 @@
{% block modal %}{% endblock %}
<form class="titlebar container" action="{% url "search" %}">
<a class="page-logo" href="/"><img style="border-radius: 25%;" src="{{ settings.page_image.url }}" alt="Logo" title="{{ title }}"></a>
<a class="page-logo" href="/"><img src="{{ settings.page_image.url }}" alt="Logo" title="{{ title }}"></a>
<span class="title_hide">{{ title }}</span>
<input type="text" placeholder="{% trans "Search..." %}" name="q">
</form>