feat: improved extension and applied list

This commit is contained in:
2024-10-04 12:07:56 +01:00
parent 4b4eb1ab02
commit 69c60986ff
3 changed files with 24 additions and 35 deletions

View File

@@ -25,8 +25,16 @@
<div class:animate-pulse={applicationStore.dragging?.id === item.id}>
<h2 class="text-lg text-blue-500">
{item.title}
{#if item.company}
<div class="text-violet-800">
@ {item.company}
</div>
{/if}
</h2>
<a href={item.url} class="text-violet-600 overflow-hidden whitespace-nowrap block">
<a
href={item.url}
class="text-violet-600 overflow-hidden whitespace-nowrap block"
>
{item.url}
</a>
</div>