downgraded pest for 8.2 support and replaced settings button with icon
This commit is contained in:
parent
73d6578857
commit
415770c7d2
2 changed files with 4 additions and 4 deletions
|
|
@ -25,8 +25,8 @@
|
||||||
"laravel/sail": "^1.47",
|
"laravel/sail": "^1.47",
|
||||||
"mockery/mockery": "^1.6",
|
"mockery/mockery": "^1.6",
|
||||||
"nunomaduro/collision": "^8.6",
|
"nunomaduro/collision": "^8.6",
|
||||||
"pestphp/pest": "^4.1",
|
"pestphp/pest": "^3.0",
|
||||||
"pestphp/pest-plugin-laravel": "^4.0"
|
"pestphp/pest-plugin-laravel": "^3.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<h1 class="text-2xl sm:text-3xl font-bold">{{$list->name}}</h1>
|
<h1 class="text-2xl sm:text-3xl font-bold">{{$list->name}}</h1>
|
||||||
<button type="button" wire:click="toggleSettings"
|
<button type="button" wire:click="toggleSettings"
|
||||||
class="hover:bg-blue-600 cursor-pointer text-white px-4 py-2 rounded">
|
class="hover:bg-blue-600 cursor-pointer text-white px-4 py-2 rounded">
|
||||||
<i class="fas fa-cog"></i>
|
<i class="fas fa-cog text-2xl"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
<!-- Movie List View -->
|
<!-- Movie List View -->
|
||||||
<div class="w-full flex-shrink-0 flex flex-col gap-5">
|
<div class="w-full flex-shrink-0 flex flex-col gap-5">
|
||||||
<div class="flex flex-col-reverse sm:flex-row gap-5 sm:gap-0 justify-between w-full">
|
<div class="flex flex-col-reverse sm:flex-row gap-5 sm:gap-0 justify-between w-full">
|
||||||
<input class="bg-white p-2 rounded" type="text" placeholder="Filter movies"
|
<input class="flex bg-white p-2 rounded sm:w-100" type="text" placeholder="Filter movies"
|
||||||
wire:model="filterText"
|
wire:model="filterText"
|
||||||
wire:keyup="filterMovies"/>
|
wire:keyup="filterMovies"/>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue