theme update
Some checks failed
linter / quality (pull_request) Has been cancelled
tests / ci (pull_request) Has been cancelled

This commit is contained in:
Edward Tirado Jr 2025-12-31 00:11:09 -06:00
parent c31524977a
commit 97ad0421e3
5 changed files with 27 additions and 30 deletions

View file

@ -1,5 +1,5 @@
@props(['movie'])
<div class="flex flex-col bg-gray-500 w-full h-full cursor-pointer hover:bg-gray-600 transition-colors"
<div class="flex flex-col bg-gray-500 w-full h-full cursor-pointer rounded-lg overflow-hidden shadow-lg hover:shadow-2xl hover:scale-105 transition-all duration-300"
wire:click="$dispatch('openMovieDetails', { movieId: {{ $movie->id }} })">
<img class="w-full h-full object-cover" src="{{$movie->poster}}" alt="{{$movie->title}}">
</div>