Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix white background in darkmode #55

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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