Skip to content

Commit

Permalink
Merge pull request #55 from rrelmy/fix/darkMode
Browse files Browse the repository at this point in the history
Fix white background in darkmode
  • Loading branch information
markvaneijk authored Oct 25, 2024
2 parents f9b42ac + 90cb9f4 commit a13e394
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/two-factor.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<div class="space-y-10 divide-y divide-gray-900/10 ">
<div class="grid grid-cols-1 gap-x-8 gap-y-8 pt-10 md:grid-cols-3">
<div class="pr-4 sm:px-0">
<h2 class="text-base font-semibold leading-7 dark:bg-white">
<h2 class="text-base font-semibold leading-7">
{{ __('Secure your account') }}
</h2>

@if (!$showingRecoveryCodes && $user->two_factor_confirmed_at)
<p class="mt-1 text-sm leading-6 dark:bg-white mb-4">
<p class="mt-1 text-sm leading-6 mb-4">
{{ __('Your account has been secured with two factor authentication') }}.
</p>
@else
<p class="mt-1 text-sm leading-6 dark:bg-white mb-4">
<p class="mt-1 text-sm leading-6 mb-4">
{{ __('Add additional security to your account using two factor authentication') }}.
</p>
@endif
Expand Down

0 comments on commit a13e394

Please sign in to comment.