Skip to content

Commit

Permalink
dark mode support for oauth2 flow
Browse files Browse the repository at this point in the history
  • Loading branch information
inmanturbo committed Jan 30, 2024
1 parent 09d096c commit c0066a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/authorize.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<x-guest-layout>

<div class="py-3 px-6 mb-0 bg-blue-dark border-b-1 border-grey-light text-grey-lightest text-center">
<div class="fixed top-0 min-w-full px-6 py-3 mb-0 text-center bg-white border-b-1 border-grey-light text-grey-lightest dark:bg-gray-800">
Authorization Request
</div>

Expand All @@ -11,7 +11,7 @@



<div class="mb-4 text-sm text-gray-600">
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
<p><strong>{{ $client->name }}</strong> is requesting permission to access your account.</p>
</div>

Expand Down Expand Up @@ -40,7 +40,7 @@
<input type="hidden" name="auth_token" value="{{ $authToken }}">

<div class="flex justify-end mt-4">
<x-button class="ml-4 bg-red-500">
<x-button class="ml-4 bg-red-500 dark:bg-red-800">
{{ __('Cancel') }}
</x-button>
</div>
Expand Down

0 comments on commit c0066a3

Please sign in to comment.