Skip to content

Commit

Permalink
fix: custom action button dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav committed Dec 29, 2022
1 parent b5a65bb commit b604a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unfold/templates/admin/submit_line.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{% endif %}

{% for action in actions_submit_line %}
<button type="submit" name="{{ action.action_name }}" class="border font-medium mb-3 px-3 py-2 rounded-md text-sm text-gray-500 w-full hover:bg-gray-50 lg:mb-0 lg:mr-3 lg:w-auto">
<button type="submit" name="{{ action.action_name }}" class="border font-medium mb-3 px-3 py-2 rounded-md text-sm text-gray-500 transition-all w-full hover:bg-gray-50 lg:mb-0 lg:mr-3 lg:w-auto dark:border-gray-700 dark:text-gray-400 dark:hover:text-gray-200 dark:hover:bg-gray-900">
{{ action.description }}
</button>
{% endfor %}
Expand Down

0 comments on commit b604a35

Please sign in to comment.