mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
fix: update recovery code display to adapt background color based on theme
This commit is contained in:
parent
ac104b223c
commit
69b59ef68e
1 changed files with 1 additions and 1 deletions
|
|
@ -609,7 +609,7 @@
|
|||
<div class="row g-3">
|
||||
{% for code in totp_recovery_codes %}
|
||||
<div class="col-6">
|
||||
<div class="p-3 border rounded bg-light shadow-sm text-center recovery-code">{{ code }}</div>
|
||||
<div class="p-3 border rounded bg-{% if theme == 'light' %}light{% else %}dark{% endif %} shadow-sm text-center recovery-code">{{ code }}</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue