Skip to content

Commit

Permalink
fix: link text of menu links for dark themes (#87)
Browse files Browse the repository at this point in the history
text-neutral is not visible on dark themes. Let DaisyUI handle it.
  • Loading branch information
danihodovic committed Jun 25, 2024
1 parent d22e787 commit 5491a54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion allauth_ui/templates/allauth/layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{% endif %}
{% block content %}
{% endblock content %}
<div class="mx-auto text-neutral [&_a]:link text-sm flex flex-col md:flex-row items-center justify-center gap-3 mt-3">
<div class="mx-auto [&_a]:link text-sm flex flex-col md:flex-row items-center justify-center gap-3 mt-3">
{% if user.is_authenticated %}
{% url 'account_email' as email_url %}
{% if email_url %}
Expand Down
2 changes: 2 additions & 0 deletions sample_deployment/sample_deployment/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,5 @@
"BACKEND": "whitenoise.storage.CompressedManifestStaticFilesStorage",
},
}

ALLAUTH_UI_THEME = "business"

0 comments on commit 5491a54

Please sign in to comment.