diff --git a/static/panes.less b/static/panes.less index 1d6d268d8..e7ca02880 100644 --- a/static/panes.less +++ b/static/panes.less @@ -71,3 +71,20 @@ atom-pane-container { } } } + +// Windows doesn't have row- and col-resize cursors +.platform-win32 { + atom-pane-container { + atom-pane-axis.vertical { + & > atom-pane-resize-handle { + cursor: ns-resize; + } + } + + atom-pane-axis.vertical { + & > atom-pane-resize-handle { + cursor: ew-resize; + } + } + } +}