fixed invisible buttons issue across the website
This commit is contained in:
@@ -151,7 +151,7 @@ new class extends Component {
|
||||
|
||||
<div>
|
||||
<div class="mb-6">
|
||||
<flux:button variant="ghost" :href="route('admin.dashboard')" wire:navigate icon="arrow-left">
|
||||
<flux:button variant="outline" :href="route('admin.dashboard')" wire:navigate icon="arrow-left">
|
||||
{{ __('timelines.back_to_timelines') }}
|
||||
</flux:button>
|
||||
</div>
|
||||
@@ -244,7 +244,7 @@ new class extends Component {
|
||||
<flux:button variant="primary" type="submit">
|
||||
{{ __('timelines.save_edit') }}
|
||||
</flux:button>
|
||||
<flux:button variant="ghost" type="button" wire:click="cancelEdit">
|
||||
<flux:button variant="outline" type="button" wire:click="cancelEdit">
|
||||
{{ __('timelines.cancel') }}
|
||||
</flux:button>
|
||||
@else
|
||||
@@ -297,7 +297,7 @@ new class extends Component {
|
||||
|
||||
@if(!$editingUpdateId && $timeline->isActive())
|
||||
<flux:button
|
||||
variant="ghost"
|
||||
variant="outline"
|
||||
size="sm"
|
||||
wire:click="editUpdate({{ $update->id }})"
|
||||
icon="pencil"
|
||||
@@ -328,7 +328,7 @@ new class extends Component {
|
||||
|
||||
<div class="flex justify-end gap-3">
|
||||
<flux:modal.close>
|
||||
<flux:button variant="ghost">{{ __('timelines.cancel') }}</flux:button>
|
||||
<flux:button variant="outline">{{ __('timelines.cancel') }}</flux:button>
|
||||
</flux:modal.close>
|
||||
<flux:button variant="danger" wire:click="archive" x-on:click="$flux.modal('archive-confirm').close()">
|
||||
{{ __('timelines.archive') }}
|
||||
|
||||
Reference in New Issue
Block a user