From 57e6715aa57d224fea43e33cea2b63455d05b282 Mon Sep 17 00:00:00 2001 From: Wang Jiyuan <59059173+EurFelux@users.noreply.github.com> Date: Sat, 14 Jun 2025 14:57:31 +0800 Subject: [PATCH] fix: remove margin-bottom for loading animation (#7191) * fix: remove margin-bottom for loading animation * fix: just need to remove the margin-bottom of the last block --- src/renderer/src/assets/styles/index.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/renderer/src/assets/styles/index.scss b/src/renderer/src/assets/styles/index.scss index b91b3c3a54..9974f19596 100644 --- a/src/renderer/src/assets/styles/index.scss +++ b/src/renderer/src/assets/styles/index.scss @@ -136,6 +136,10 @@ ul { display: flow-root; } + .block-wrapper:last-child > *:last-child { + margin-bottom: 0; + } + .message-content-container > *:last-child { margin-bottom: 0; }