Skip to content

Commit

Permalink
fix: icons on onboarding buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
lewislarsen committed Jun 25, 2024
1 parent 6512093 commit d4f57c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/partials/steps-to-get-started/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<a href="{{ route('remote-servers.create') }}" wire:navigate>
<x-primary-button class="mt-4" centered fat>
{{ __('Link Remote Server') }}
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2')
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2 inline')
</x-primary-button>
</a>
</div>
Expand Down Expand Up @@ -57,13 +57,13 @@
class="mt-4 cursor-not-allowed bg-opacity-50 hover:bg-opacity-50 focus:bg-opacity-50"
centered fat disabled>
{{ __('Add your Backup Destination') }}
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2')
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2 inline')
</x-primary-button>
@else
<a href="{{ route('backup-destinations.create') }}" wire:navigate>
<x-primary-button class="mt-4" centered fat>
{{ __('Add another Backup Destination') }}
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2')
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2 inline')
</x-primary-button>
@endif
</div>
Expand Down Expand Up @@ -92,7 +92,7 @@ class="text-red-500 text-sm">{{ __('You need to link a Backup Destination first.
class="mt-4 cursor-not-allowed bg-opacity-50 hover:bg-opacity-50 focus:bg-opacity-50"
centered fat disabled>
{{ __('Create your first Backup Task') }}
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2')
@svg('heroicon-o-arrow-right', 'h-5 w-5 ml-2 inline')
</x-primary-button>
@else
<a href="{{ route('backup-tasks.create') }}" wire:navigate>
Expand Down

0 comments on commit d4f57c2

Please sign in to comment.