whitespace-nowrap

This commit is contained in:
HolgerHatGarKeineNode
2023-02-27 18:39:54 +01:00
parent ce972e66c6
commit 384740daeb

View File

@@ -1,23 +1,23 @@
<div class="flex flex-col space-y-1">
@if($row->course_events_count > 0)
<div>
<x-button xs amber wire:click="courseSearch({{ $row->id }})">
<x-button class="whitespace-nowrap" xs amber wire:click="courseSearch({{ $row->id }})">
{{ __('Show dates') }} [{{ $row->course_events_count }}]
</x-button>
</div>
@else
<div>
<x-button xs outline wire:click="courseSearch({{ $row->id }})">
<x-button class="whitespace-nowrap" xs outline wire:click="courseSearch({{ $row->id }})">
{{ __('Show dates') }}
</x-button>
</div>
@endif
@can('update', $row)
<div>
<x-button amber xs :href="route('course.form.course', ['course' => $row])">
<x-button class="whitespace-nowrap" amber xs :href="route('course.form.course', ['course' => $row])">
<i class="fa fa-thin fa-edit"></i>
{{ __('Edit') }}
</x-buttonamber>
</x-button>
</div>
@endcan
</div>