CardThumb.svelte 376 B

123456789101112131415161718192021
  1. <script lang="ts">
  2. let {id} = $props()
  3. </script>
  4. <div class="card-thumbnail">
  5. {#if id}
  6. <img height="100%" src="https://cdn.233.momobako.com/ygopro/pics/{id}.jpg!half" alt="yugioh card {id}">
  7. {/if}
  8. </div>
  9. <style>
  10. .card-thumbnail {
  11. width: 50px;
  12. height: 70px;
  13. background-color: #eee;
  14. margin-right: 10px;
  15. border-radius: 3px;
  16. }
  17. </style>