fix(win32): Resize cursors need to be different for win

This commit is contained in:
Ben Gotow 2015-03-11 13:13:51 -07:00
parent 3d52458e56
commit 69c42115b2

View file

@ -109,7 +109,6 @@ atom-workspace {
width:100%;
// border-top: 1px solid @border-color-divider;
}
&.flexbox-handle-top {
top:-3px;
padding-right:3px;
@ -119,3 +118,13 @@ atom-workspace {
padding-right:2px;
}
}
body.platform-win32 {
.flexbox-handle-vertical {
cursor:ns-resize;
}
.flexbox-handle-horizontal {
cursor:ew-resize;
}
}