Skip to content

Commit 33dfa84

Browse files
tahierhussainclaude
andcommitted
fix: explorer toggle button hidden behind main content
The collapse/expand toggle button on the explorer panel was being rendered behind the main editor area due to missing stacking context and overflow clipping. Changes to .ideResizeExplorer: - Changed overflow from hidden to visible to allow the button to render outside container bounds - Added position: relative and z-index: 10 to establish proper stacking context above the adjacent editor area 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent cbf44b8 commit 33dfa84

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

frontend/src/ide/ide-layout.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@
3636
.ideResizeExplorer {
3737
background-color: var(--chat-ai-bg-color);
3838
transition: width 0.2s ease;
39-
overflow: hidden;
39+
overflow: visible;
4040
flex-shrink: 0;
41+
position: relative;
42+
z-index: 10;
4143
}
4244

4345
.ideBody > .flex-1 {

0 commit comments

Comments
 (0)