Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into dev/v0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonfagan authored Mar 12, 2023
2 parents 95ce6fc + fd8be16 commit 54a7b3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/things/Thing.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { Card, Text } from "$lib/Foundation.svelte";
import { Card, Text } from "$lib/Foundation.svelte";
import BoxIcon from "$lib/icons/box.svg";
import { t } from "$lib/language/translate";
Expand All @@ -13,7 +13,7 @@

<div class="flex flex-col {className}">
<Card>
<img src={thing.image ?? BoxIcon} alt={thing.name} class="h-full w-full object-contain" />
<img src={thing.image ?? BoxIcon} alt={thing.name} class="h-full w-full object-contain" />
</Card>
<div class="pl-1 pt-2 flex flex-col gap-2 justify-between flex-grow">
<Text display bold smallauto>{thing.name}</Text>
Expand Down

0 comments on commit 54a7b3e

Please sign in to comment.