From ee92aac408e5a0e88115bef82ecb1af610eb2cba Mon Sep 17 00:00:00 2001 From: ComputelessComputer <63365510+ComputelessComputer@users.noreply.github.com> Date: Wed, 20 May 2026 22:06:21 +0900 Subject: [PATCH] fix(desktop): use flex gap skeleton layout Use flex column stacks with gap spacing for the transcript batch skeleton. --- .../bottom-accessory/post-session.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/apps/desktop/src/session/components/bottom-accessory/post-session.tsx b/apps/desktop/src/session/components/bottom-accessory/post-session.tsx index e1c5d26c0f..0aa3f2815f 100644 --- a/apps/desktop/src/session/components/bottom-accessory/post-session.tsx +++ b/apps/desktop/src/session/components/bottom-accessory/post-session.tsx @@ -228,17 +228,16 @@ function BatchTranscriptSkeleton({ fillHeight }: { fillHeight: boolean }) { aria-hidden data-testid="transcript-skeleton" className={cn([ - "flex overflow-hidden px-6 py-4", - fillHeight ? "min-h-0 flex-1 items-center" : "h-[178px] items-start", + "flex flex-col overflow-hidden px-6 py-4", + fillHeight + ? "min-h-0 flex-1 justify-center" + : "h-[178px] justify-start", ])} > -