Skip to content

Commit 66a6676

Browse files
committed
scroll bar width
1 parent 8700469 commit 66a6676

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/desktop/window.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ export const WindowComponent = ({ window }: WindowProps) => {
5555
</div>
5656

5757
{/* Content Area */}
58-
<div className="mac-window-content mac-scrollbar" style={{ height: "calc(100% - 20px)" }}>
58+
<div className="mac-window-content mac-scrollbar w-6" style={{ height: "calc(100% - 20px)" }}>
5959
{window.content}
6060
</div>
6161

6262
{/* Resize Handles */}
6363
<div
64-
className="absolute bottom-0 right-0 w-4 h-4 cursor-nwse-resize border border-black"
64+
className="absolute bottom-0 right-0 w-6 h-6 cursor-nwse-resize border border-black"
6565
onMouseDown={(e) => startResize(e, window.id, "se")}
6666
/>
6767
</div>

0 commit comments

Comments
 (0)