make donate button look better

master
Aevann 2023-03-10 23:17:35 +02:00
parent db6f0bf3a6
commit dcdf24d95d
1 changed files with 5 additions and 4 deletions

View File

@ -95,9 +95,7 @@
{% endif %}
{% if not (v and v.patron) %}
<li class="nav-item d-flex align-items-center justify-content-center mx-1 mr-2">
<a class="btn btn-primary" href="/donate">Donate</a>
</li>
<a href="/donate" type="button" class="btn btn-primary mr-2 mobile-nav-icon d-md-none">Donate</a>
{% endif %}
{% if g.browser == 'webview' %}
@ -137,8 +135,11 @@
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto d-none d-md-flex">
{% if v %}
{% if not (v and v.patron) %}
<a class="btn btn-primary mr-3 pb-0 pt-2" href="/donate">Donate</a>
{% endif %}
{% if v %}
{% if v.notifications_count %}
<li class="nav-item d-flex align-items-center text-center justify-content-center mx-1">
<a class="nav-link position-relative" href="/notifications{% if v.notifications_do %}/{{v.notifications_do}}{% endif %}" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Notifications"><i class="notif-{{v.notifications_do}}-bell fas fa-bell" style="color: {{v.notifications_color}}"></i><span class="notif-{{v.notifications_do}} notif-count ml-1" style="padding-left: 4.5px;{% if v.notifications_do %}background:{{v.notifications_color}}{% endif %}">{{v.notifications_count}}</span></a>