Skip to content

Commit fd0fe33

Browse files
committed
feat: v1.1.18
1 parent ec6a9bb commit fd0fe33

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Suraj Air",
66
"license": "BSD-3-Clause",
77
"homepage": "https://chaibuilder.com",
8-
"version": "1.1.17",
8+
"version": "1.1.18",
99
"type": "module",
1010
"repository": {
1111
"type": "git",

src/core/components/sidepanels/SidePanels.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ const SidePanels = () => {
129129
</div>
130130
}>
131131
<div
132-
className={cn("relative h-full max-h-[93%] overflow-y-auto bg-background p-1", activePanel === "layers" ? "" : "z-[100]")}
132+
className={cn(
133+
"relative h-full max-h-[93%] overflow-y-auto overflow-x-hidden bg-background p-1",
134+
activePanel === "layers" ? "" : "z-[100]",
135+
)}
133136
onMouseEnter={() => {
134137
if (hideTimeout) clearTimeout(hideTimeout);
135138
}}>

0 commit comments

Comments
 (0)