We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8700469 commit 66a6676Copy full SHA for 66a6676
src/components/desktop/window.tsx
@@ -55,13 +55,13 @@ export const WindowComponent = ({ window }: WindowProps) => {
55
</div>
56
57
{/* Content Area */}
58
- <div className="mac-window-content mac-scrollbar" style={{ height: "calc(100% - 20px)" }}>
+ <div className="mac-window-content mac-scrollbar w-6" style={{ height: "calc(100% - 20px)" }}>
59
{window.content}
60
61
62
{/* Resize Handles */}
63
<div
64
- className="absolute bottom-0 right-0 w-4 h-4 cursor-nwse-resize border border-black"
+ className="absolute bottom-0 right-0 w-6 h-6 cursor-nwse-resize border border-black"
65
onMouseDown={(e) => startResize(e, window.id, "se")}
66
/>
67
0 commit comments