diff --git a/src/routes/patches/PatchItem.svelte b/src/routes/patches/PatchItem.svelte index 93f83aa..d5679aa 100644 --- a/src/routes/patches/PatchItem.svelte +++ b/src/routes/patches/PatchItem.svelte @@ -34,13 +34,15 @@
  • 🌎 Universal patch
  • {:else} {#each patch.compatiblePackages as pkg} - -
  • 📦 {pkg.name}
  • -
    +
  • + + 📦 {pkg.name} + +
  • {/each} {/if} @@ -71,14 +73,16 @@ {/if} {#if patch.compatiblePackages[0].versions.length > 1} - +
  • + +
  • {/if} {:else}
  • 🎯 Any
  • @@ -117,6 +121,10 @@ color: var(--accent-color-two); } + .button { + display: flex; + align-items: center; + } .patch-info { display: flex; justify-content: center; @@ -136,11 +144,12 @@ a { text-decoration: none; - } + color: var(--grey-five); - a .patch-info:hover { - text-decoration: underline var(--accent-color-two); - color: var(--accent-color-two); + &:hover { + text-decoration: underline var(--accent-color-two); + color: var(--accent-color-two); + } } .info-container {