removed dark mod and applied fixes for text colors
This commit is contained in:
@@ -33,12 +33,12 @@ new class extends Component
|
||||
<flux:heading size="sm" class="mb-4">{{ __('widgets.todays_schedule') }}</flux:heading>
|
||||
|
||||
@forelse ($todaySchedule as $consultation)
|
||||
<div wire:key="schedule-{{ $consultation->id }}" class="flex items-center justify-between border-b border-zinc-100 py-2 last:border-0 dark:border-zinc-700">
|
||||
<div wire:key="schedule-{{ $consultation->id }}" class="flex items-center justify-between border-b border-zinc-100 py-2 last:border-0">
|
||||
<div>
|
||||
<div class="font-medium text-zinc-900 dark:text-zinc-100">
|
||||
<div class="font-medium text-zinc-900">
|
||||
{{ \Carbon\Carbon::parse($consultation->booking_time)->format('g:i A') }}
|
||||
</div>
|
||||
<div class="flex items-center gap-2 text-sm text-zinc-500 dark:text-zinc-400">
|
||||
<div class="flex items-center gap-2 text-sm text-zinc-500">
|
||||
<span>{{ $consultation->user?->full_name ?? __('widgets.unknown_client') }}</span>
|
||||
<flux:badge size="sm">{{ $consultation->consultation_type->label() }}</flux:badge>
|
||||
</div>
|
||||
@@ -62,6 +62,6 @@ new class extends Component
|
||||
</div>
|
||||
</div>
|
||||
@empty
|
||||
<flux:text class="text-zinc-500 dark:text-zinc-400">{{ __('widgets.no_consultations_today') }}</flux:text>
|
||||
<flux:text class="text-zinc-500">{{ __('widgets.no_consultations_today') }}</flux:text>
|
||||
@endforelse
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user