diff --git a/services/frontend/src/widgets/Sidebar.tsx b/services/frontend/src/widgets/Sidebar.tsx
index 7b8bdc3..2e3b081 100644
--- a/services/frontend/src/widgets/Sidebar.tsx
+++ b/services/frontend/src/widgets/Sidebar.tsx
@@ -42,6 +42,7 @@ export function Sidebar({
channelId,
});
return (
+ <>
- {/* Border triangle (outer) — points left */}
-
- {/* Fill triangle (inner) — offset 1px right for border effect */}
-
+ {/* Outer: border layer — 1px larger, extends left & down to show border on diagonal/bottom edges */}
+
+ {/* Inner: fill layer — original position & size, matches bubble bg */}
+
)}
@@ -135,14 +136,15 @@ export function Sidebar({
>
- mascotChat.setIsOpen(false)}
- onSendMessage={mascotChat.handleSendMessage}
- mascotName="Discord Watcher"
- className="absolute bottom-16 left-12 z-50"
- />
+ mascotChat.setIsOpen(false)}
+ onSendMessage={mascotChat.handleSendMessage}
+ mascotName="Discord Watcher"
+ className="fixed bottom-20 left-[80px] z-[9999]"
+ />
+ >
);
}