forked from rDrama/rDrama
1
0
Fork 0
Aevann 2023-08-05 13:44:05 +03:00
parent b0069e18e0
commit 847fb2a6b7
7 changed files with 101 additions and 101 deletions

View File

@ -65,8 +65,8 @@ def selected_tab(request):
return 'new'
elif request.path == '/comments':
return 'comments'
elif request.path == '/leaderboard':
return 'leaderboard'
elif request.path == '/casino':
return 'casino'
elif request.path == '/chat':
return 'chat'
elif request.path=='/shop/awards':

View File

@ -163,10 +163,10 @@
</a>
</button>
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0 ml-1">
<a href="/leaderboard" class="text-decoration-none">
<a href="/casino" class="text-decoration-none">
<div class="text-center text-muted">
<i class="fas fa-trophy text-lg"></i>
<div class="text-small-extra">Leaderboard</div>
<i class="fas fa-cards text-lg"></i>
<div class="text-small-extra">Casino</div>
</div>
</a>
</button>

View File

@ -165,10 +165,10 @@
</a>
</button>
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0 ml-1">
<a href="/leaderboard" class="text-decoration-none">
<a href="/casino" class="text-decoration-none">
<div class="text-center text-muted">
<i class="fas fa-trophy text-lg"></i>
<div class="text-small-extra">Leaderboard</div>
<i class="fas fa-cards text-lg"></i>
<div class="text-small-extra">Casino</div>
</div>
</a>
</button>

View File

@ -164,10 +164,10 @@
</a>
</button>
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0 ml-1">
<a href="/leaderboard" class="text-decoration-none">
<a href="/casino" class="text-decoration-none">
<div class="text-center text-muted">
<i class="fas fa-trophy text-lg"></i>
<div class="text-small-extra">Leaderboard</div>
<i class="fas fa-cards text-lg"></i>
<div class="text-small-extra">Casino</div>
</div>
</a>
</button>

View File

@ -166,10 +166,10 @@
</a>
</button>
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0 ml-1">
<a href="/leaderboard" class="text-decoration-none">
<a href="/casino" class="text-decoration-none">
<div class="text-center text-muted">
<i class="fas fa-trophy text-lg"></i>
<div class="text-small-extra">Leaderboard</div>
<i class="fas fa-cards text-lg"></i>
<div class="text-small-extra">Casino</div>
</div>
</a>
</button>

View File

@ -186,8 +186,8 @@
</a>
{% if v and FEATURES['GAMBLING'] %}
<a class="mobile-nav-icon d-md-none" href="/casino" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Casino">
<i class="fas fa-cards align-middle text-gray-500 black"></i>
<a class="mobile-nav-icon d-md-none" href="/leaderboard" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Leaderboard">
<i class="fas fa-trophy align-middle text-gray-500 black"></i>
</a>
{% endif %}

View File

@ -29,7 +29,7 @@
</a>
</button>
{% endif %}
<button type="button" class="nobackground border-0 col px-0 mr-2 btn btn-dead m-0">
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0">
<a href="/comments" class="text-decoration-none">
<div class="text-center {% if request|selected_tab=='comments' %}text-primary{% else %}text-muted{% endif %}">
<i class="fas fa-comment-dots text-lg"></i>
@ -37,11 +37,11 @@
</div>
</a>
</button>
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0 ml-1">
<a href="/leaderboard" class="text-decoration-none">
<div class="text-center {% if request|selected_tab=='leaderboard' %}text-primary{% else %}text-muted{% endif %}">
<i class="fas fa-trophy text-lg"></i>
<div class="text-small-extra">Leaderboard</div>
<button type="button" class="nobackground border-0 col px-0 btn btn-dead m-0">
<a href="/casino" class="text-decoration-none">
<div class="text-center {% if request|selected_tab=='casino' %}text-primary{% else %}text-muted{% endif %}">
<i class="fas fa-cards text-lg"></i>
<div class="text-small-extra">Casino</div>
</div>
</a>
</button>