2022-05-08 12:02:37 +00:00
|
|
|
<script>
|
|
|
|
export let item;
|
|
|
|
</script>
|
|
|
|
|
2022-05-20 08:46:06 +00:00
|
|
|
<a class="flex flex-col mb-8 gradient justify-center overflow-hidden" href="#/item/{item.rowid}">
|
2022-05-19 08:53:05 +00:00
|
|
|
<div class="flex justify-center">
|
|
|
|
<img class="h-64 max-w-sm object-contain py-2 mb-6 float-left rounded-md transform transition ease-out duration-300 hover:scale-105"
|
|
|
|
src={item.image} alt="{item.name}">
|
|
|
|
</div>
|
2022-05-19 19:50:14 +00:00
|
|
|
<sl-rating readonly precision="0.1" value={item.rating}></sl-rating>
|
2022-05-08 12:02:37 +00:00
|
|
|
</a>
|
|
|
|
|
2022-05-11 10:23:36 +00:00
|
|
|
|
2022-05-20 08:46:06 +00:00
|
|
|
<style>
|
|
|
|
.gradient{
|
|
|
|
background-color: #8BC6EC;
|
|
|
|
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
|
|
|
|
}
|
|
|
|
</style>
|