fixed invisible buttons issue across the website
This commit is contained in:
@@ -78,7 +78,7 @@ new class extends Component {
|
||||
</div>
|
||||
<div class="pt-2">
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
:href="route('client.consultations.index')"
|
||||
wire:navigate
|
||||
@@ -134,7 +134,7 @@ new class extends Component {
|
||||
@endif
|
||||
<div class="pt-2">
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
:href="route('client.timelines.index')"
|
||||
wire:navigate
|
||||
@@ -174,7 +174,7 @@ new class extends Component {
|
||||
</flux:text>
|
||||
</div>
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="xs"
|
||||
:href="route('client.timelines.show', $update->timeline)"
|
||||
wire:navigate
|
||||
|
||||
@@ -52,7 +52,7 @@ new class extends Component
|
||||
</p>
|
||||
</div>
|
||||
<div class="flex items-center gap-2 flex-shrink-0">
|
||||
<flux:badge variant="success">{{ __('client.active') }}</flux:badge>
|
||||
<flux:badge color="green">{{ __('client.active') }}</flux:badge>
|
||||
<flux:button size="sm" href="{{ route('client.timelines.show', $timeline) }}" class="min-h-[44px]">
|
||||
{{ __('client.view') }}
|
||||
</flux:button>
|
||||
@@ -88,7 +88,7 @@ new class extends Component
|
||||
</div>
|
||||
<div class="flex items-center gap-2 flex-shrink-0">
|
||||
<flux:badge>{{ __('client.archived') }}</flux:badge>
|
||||
<flux:button size="sm" variant="ghost" href="{{ route('client.timelines.show', $timeline) }}" class="min-h-[44px]">
|
||||
<flux:button size="sm" variant="outline" href="{{ route('client.timelines.show', $timeline) }}" class="min-h-[44px]">
|
||||
{{ __('client.view') }}
|
||||
</flux:button>
|
||||
</div>
|
||||
|
||||
@@ -25,7 +25,7 @@ new class extends Component
|
||||
<p class="text-zinc-600 ">{{ __('client.reference') }}: {{ $timeline->case_reference }}</p>
|
||||
@endif
|
||||
</div>
|
||||
<flux:badge :variant="$timeline->status->value === 'active' ? 'success' : 'default'">
|
||||
<flux:badge :color="$timeline->status->value === 'active' ? 'green' : 'zinc'">
|
||||
{{ __('client.' . $timeline->status->value) }}
|
||||
</flux:badge>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user