aboutsummaryrefslogtreecommitdiff
path: root/src/components/CardThumb.svelte
blob: 6dcefd269d6b1abc508f064d6d6d4d52309181a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script lang="ts">
    let {id} = $props()
</script>

<div class="card-thumbnail">
    {#if id}
        <img height="100%" src="https://cdn.233.momobako.com/ygopro/pics/{id}.jpg!half" alt="yugioh card {id}">
    {/if}
</div>

<style>

.card-thumbnail {
    width: 50px;
    height: 70px;
    background-color: #eee;
    margin-right: 10px;
    border-radius: 3px;
}

</style>