angular-practice/demo-app-tailwind/src/app/house-ad/house-ad.component.html

14 lines
681 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<section class="ad border border-solid border-gray-900 bg-sky-200 rounded-4xl leading-8 h-96">
<img class="w-full h-[var(--image-height)] object-cover p-0 rounded-t-4xl" src="{{ house.img }}" />
<div class="details h-[calc(100%-var(--image-height)-20px)] flex flex-col justify-between gap-y-3 p-3">
<div class="house-details">
<h1 class="text-2xl">{{ house.name }}</h1>
<div class="location-price flex justify-between">
<span class="house-location">{{ house.location }}</span>
<span class="house-price">{{ house.price }}</span>
</div>
</div>
<a class="after:content-[''] after:ml-1" [routerLink]="['/details', house.id]">To offer</a>
</div>
</section>