remote fix
ci/woodpecker/push/woodpecker Pipeline failed Podrobnosti

This commit is contained in:
Adam Sobotka 2022-10-28 19:00:13 +02:00
rodič 077006f776
revize bbf796673e
1 změnil soubory, kde provedl 6 přidání a 4 odebrání

Zobrazit soubor

@ -22,7 +22,6 @@
.filter((c) => data.type === 'all' || c.roles.includes(data.typeConfig.role))
.sort((a, b) => 0.5 - Math.random())
.map(wrapContributor);
</script>
<svelte:head>
@ -56,18 +55,21 @@
/>
</a>
<h3
class="tracking-widest text-gray-400 text-xs font-medium title-font flex flex-row divide-x"
class="tracking-widest text-gray-400 text-xs font-medium title-font flex flex-row gap-2"
>
{#each item.roles as role}
<span class="underline">{role}</span>
{/each}
</h3>
<div class="flex flex-row mb-2 {item.remote ? 'contributor-remote' : ''}">
<a class="text-lg text-white font-medium title-font" href={item.link} target="_blank">
<div class="flex flex-row mb-2">
<a class="text-lg flex justify-center text-white font-medium title-font" href={item.link} target="_blank">
{item.name}
{#if item.nickname}
({item.nickname})
{/if}
{#if item.remote}
<span class="ordinal text-xs ml-2">remote</span>
{/if}
</a>
</div>