css: Remove unused btn-block styles.

The (unfinished) two-factor UI isn't designed at all, so we can just
remove the classes from it.
This commit is contained in:
Tim Abbott
2024-01-25 14:57:04 -08:00
parent f04b54ff47
commit ee9a9bfa98
2 changed files with 2 additions and 11 deletions

View File

@@ -27,7 +27,7 @@
<p>
{% for other in other_devices %}
<button name="challenge_device" value="{{ other.persistent_id }}"
class="btn btn-default btn-block" type="submit">
class="two-factor-button" type="submit">
{{ other|device_action }}
</button>
{% endfor %}
@@ -37,7 +37,7 @@
<p>{{ _("As a last resort, you can use a backup token:") }}</p>
<p>
<button name="wizard_goto_step" type="submit" value="backup"
class="btn btn-default btn-block">
class="two-factor-button">
{{ _("Use backup token") }}
</button>
</p>