fix(ui): mfa backup codes dark mode #2323

Merged
tonytkachenko merged 2 commits from fix-dark-mfa-page into main 2025-06-09 22:19:09 +08:00

View File

@@ -13,7 +13,7 @@
<div class="space-y-6">
zachgoll commented 2025-06-09 22:05:18 +08:00 (Migrated from github.com)
Review
          <div class="p-3 bg-surface-inset rounded-lg font-mono text-lg">

I think this was a case that we forgot to update our design tokens for, so would prefer to use bg-surface-inset here.

```suggestion <div class="p-3 bg-surface-inset rounded-lg font-mono text-lg"> ``` I think this was a case that we forgot to update our design tokens for, so would prefer to use `bg-surface-inset` here.
<div class="grid grid-cols-2 gap-4">
<% @backup_codes.each do |code| %>
<div class="p-3 bg-gray-100 rounded-lg font-mono text-lg">
<div class="p-3 bg-surface-inset rounded-lg font-mono text-lg">
<%= code %>
</div>
<% end %>