Skip to content

Commit

Permalink
more betterer styles
Browse files Browse the repository at this point in the history
  • Loading branch information
inmanturbo committed Jan 30, 2024
1 parent c0066a3 commit c4f0bd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/api-token-manager.blade.php
Expand Up @@ -66,7 +66,7 @@
<div class="space-y-6">
@foreach ($this->user->tokens->sortBy('name') as $token)
<div class="flex items-center justify-between">
<div>
<div class="text-sm text-gray-400">
{{ $token->name ?? $token->client->name }}
</div>

Expand Down Expand Up @@ -139,7 +139,7 @@ class="w-full px-4 py-2 mt-4 font-mono text-sm text-gray-500 bg-gray-100 rounded
@foreach (Laravel\Jetstream\Jetstream::$permissions as $permission)
<label class="flex items-center">
<x-checkbox wire:model.defer="updateApiTokenForm.scopes" :value="$permission" />
<span class="ml-2 text-sm text-gray-600">{{ $permission }}</span>
<span class="ml-2 text-sm text-gray-600 dark:text-gray-400">{{ $permission }}</span>
</label>
@endforeach
</div>
Expand Down

0 comments on commit c4f0bd1

Please sign in to comment.