We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be1733 commit f381c16Copy full SHA for f381c16
src/app/app.component.html
@@ -22,9 +22,9 @@ <h1 class="mb-4 md:mb-8 text-sm leading-4 text-white">
22
23
<div
24
*ngIf="field.name === 'image' && form?.get('image')"
25
- class="w-full aspect-[1.91/1] rounded bg-zinc-800 border border-zinc-800 overflow-hidden"
+ class="w-full aspect-[1.91/1] rounded bg-zinc-800 border border-zinc-800 overflow-hidden max-w-64"
26
>
27
- <img *ngIf="form?.get('image')?.value" [src]="form.get('image')?.value" class="aspect-[1.91/1]" width="100%" alt="" />
+ <img *ngIf="form?.get('image')?.value" [src]="form.get('image')?.value" class="aspect-[1.91/1] max-w-64" width="100%" alt="" />
28
</div>
29
30
<div class="relative w-full">
0 commit comments