diff --git a/src/app/components/VideoCallContent.svelte b/src/app/components/VideoCallContent.svelte index 51114a05..ca1eaa82 100644 --- a/src/app/components/VideoCallContent.svelte +++ b/src/app/components/VideoCallContent.svelte @@ -176,8 +176,6 @@ layout === "default" && "aspect-video w-full min-h-0", layout === "strip" && "aspect-video w-44 shrink-0", tile.source === Track.Source.ScreenShare ? "bg-black" : "bg-base-100", - $videoPrimaryTileKey === tileKey(tile) && - "ring-2 ring-primary ring-offset-2 ring-offset-base-300", )}> {#if tile.attachable} {#if tiles.length > 1} + {@const pinned = $videoPrimaryTileKey === tileKey(tile)} diff --git a/src/lib/components/Button.svelte b/src/lib/components/Button.svelte index 4184b172..21f35430 100644 --- a/src/lib/components/Button.svelte +++ b/src/lib/components/Button.svelte @@ -14,6 +14,7 @@ style?: string disabled?: boolean "data-tip"?: string + "aria-pressed"?: boolean } = $props() const className = $derived(`text-left ${restProps.class}`)