add css class for horizontal lists

This commit is contained in:
2025-11-27 17:11:57 +03:00
parent 1a3c015612
commit 04fd3f5d20
5 changed files with 35 additions and 32 deletions

View File

@@ -12,7 +12,7 @@
{% else %}
{% with user = get_active_user() %}
Welcome, <a href="{{ url_for("users.page", username = user.username) }}">{{user.username}}</a>
<ul>
<ul class="horizontal">
<li><a href="{{ url_for("users.settings", username = user.username) }}">Settings</a></li>
<li><a href="{{ url_for("users.inbox", username = user.username) }}">Inbox</a></li>
{% if config.DISABLE_SIGNUP and user.can_invite() %}