Files
WatchIt/WatchIt.Website/WatchIt.Website/Components/Common/Subcomponents/PictureComponent.razor

7 lines
251 B
Plaintext

<img id="imgObject" class="rounded-2 shadow object-fit-cover @(Class)" src="@(Picture is not null ? Picture.ToString() : Placeholder)" alt="@(AlternativeText)"/>
<style>
#imgObject {
aspect-ratio: @(AspectRatio.ToString());
}
</style>