Skip to content

Commit e1c9fc4

Browse files
committed
update
1 parent c4a8d9d commit e1c9fc4

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/lib/components/StreamInfo.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</script>
3939

4040
<div
41-
class="bg-muted text-muted-foreground flex items-center justify-between overflow-hidden p-2 text-xs shadow"
41+
class="text-muted-foreground flex items-center justify-between overflow-hidden border-b p-2 text-xs shadow"
4242
>
4343
<p class="truncate" title={stream.title}>{stream.title}</p>
4444

src/lib/components/split/SplitHeader.svelte

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,21 @@
3333
}
3434
</script>
3535

36-
<div class="z-20 flex items-center justify-between border-b p-1">
36+
<div class="bg-sidebar z-20 flex items-center justify-between border-b p-1">
3737
<div
3838
class="flex h-full flex-1 cursor-grab items-center gap-x-2 overflow-hidden px-1 active:cursor-grabbing"
3939
{@attach handleRef}
4040
>
4141
{#if channel}
42+
<img
43+
class="size-5 rounded-full"
44+
src={channel.user.avatarUrl}
45+
alt={channel.user.displayName}
46+
width="150"
47+
height="150"
48+
draggable="false"
49+
/>
50+
4251
<span class="truncate text-sm font-medium select-none">{channel.user.displayName}</span>
4352
{/if}
4453
</div>

0 commit comments

Comments
 (0)