Skip to content

Commit

Permalink
update meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavoquinalha committed Jul 16, 2024
1 parent 5be1733 commit f381c16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -22,9 +22,9 @@ <h1 class="mb-4 md:mb-8 text-sm leading-4 text-white">

<div
*ngIf="field.name === 'image' && form?.get('image')"
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"
>
<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="" />
</div>

<div class="relative w-full">

0 comments on commit f381c16

Please sign in to comment.