1
0
Fork 0
sortable-recipes/app/components/recipe-preview.hbs
2019-12-22 11:47:00 -06:00

19 lines
826 B
Handlebars

<div class="max-w-sm w-full lg:max-w-full lg:flex">
<div class="h-48 lg:h-auto lg:w-48 flex-none bg-cover text-center overflow-hidden"
style="background-image: url('{{@meal.mealThumb}}')">
</div>
<div class="border-r border-b border-l border-gray-400 lg:border-l-0 lg:border-t lg:border-gray-400 bg-white p-4 flex flex-col justify-between leading-normal">
<div class="mb-8">
<div class="text-gray-900 font-bold text-xl mb-2">
{{@meal.name}}
</div>
<p class="text-gray-700 text-base">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus quia, nulla! Maiores et perferendis eaque, exercitationem praesentium nihil.
</p>
</div>
<div>
<MealTag>{{@meal.category}}</MealTag>
<MealTag>{{@meal.area}}</MealTag>
</div>
</div>
</div>