diff --git a/frontend/src/app/workspace/chats/[thread_id]/page.tsx b/frontend/src/app/workspace/chats/[thread_id]/page.tsx
index 49644fc5..f95e7e90 100644
--- a/frontend/src/app/workspace/chats/[thread_id]/page.tsx
+++ b/frontend/src/app/workspace/chats/[thread_id]/page.tsx
@@ -347,7 +347,6 @@ export default function ChatPage() {
className={cn(
"m-auto flex h-screen min-h-svh overflow-hidden rounded-t-[20px] transition-[width] duration-300 ease-in-out",
artifactsOpen ? "w-full" : "w-[70%]",
- brand === "sxwz" && artifactsOpen === false && "translate-x-[-172px]",
)}
>
@@ -443,9 +442,15 @@ export default function ChatPage() {
disabled={isStreaming}
onClick={() => setShowExitDialog(true)}
>
-
+ {brand === "sxwz" ? (
+
+ ) : (
+
+ )}
{t.common.resetThread}
@@ -454,7 +459,7 @@ export default function ChatPage() {
@@ -573,13 +578,13 @@ export default function ChatPage() {
"pointer-events-none fixed right-0 bottom-3 left-0 z-30 flex justify-center px-4",
"transition-all duration-300 ease-in-out",
fullscreen ? "hidden" : "",
+ brand === "sxwz" && artifactsOpen === false && "-translate-x-[30px]"
)}
>
{!(showWelcomeStyle && thread.isThreadLoading) ? (
diff --git a/frontend/src/components/workspace/code-editor.tsx b/frontend/src/components/workspace/code-editor.tsx
index cdda7f86..6ebe3aeb 100644
--- a/frontend/src/components/workspace/code-editor.tsx
+++ b/frontend/src/components/workspace/code-editor.tsx
@@ -76,7 +76,7 @@ export function CodeEditor({
return (