We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba43976 commit 3bd4990Copy full SHA for 3bd4990
frontend/src/lib/components/ItemList.svelte
@@ -139,14 +139,14 @@
139
class="flex justify-between items-center gap-2 py-6"
140
variant="ghost"
141
>
142
- <h2 class="truncate text-lg font-medium">
+ <h2 class="w-full truncate text-lg font-medium">
143
{item.title}
144
</h2>
145
- <div class="flex justify-between items-center">
+ <div class="flex justify-between items-center w-1/3 md:w-1/4">
146
<div
147
class="flex justify-end w-full gap-2 text-sm text-muted-foreground group-hover:hidden"
148
149
- <span class="w-14 truncate">{item.feed.name}</span>
+ <span class="w-full truncate">{item.feed.name}</span>
150
<span class="w-10 truncate">
151
{fromNow(item.pub_date)}
152
</span>
0 commit comments