Skip to content

Commit

Permalink
Fixed image scaling issue on models page.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaanavD committed Oct 29, 2024
1 parent efeb0d2 commit 548db77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/models/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<a rel="noopener noreferrer" target="_blank" href={modelhub.url} class="card-body">
<div class="grid grid-cols-5">
<div class="h-full">
<img src={modelhub.image} alt={modelhub.imagealt} class="w-24 h-24" />
<img src={modelhub.image} alt={modelhub.imagealt} class="w-24" />
</div>
<div class="col-span-4">
<h2 class="card-title text-white">{modelhub.title}</h2>
Expand Down

0 comments on commit 548db77

Please sign in to comment.