nathancahill/split

Style : gutter cursor style when hover

dearlsh94 opened this issue · 2 comments

I think it would be better if the cursor changed in the hover state as well as the active state.
(use mouseenter and mouseleave?)

use css

.gutter-horizontal:hover {
    cursor: col-resize;
}

That's right, your code that can help implement this style.

when vertical, I use

.gutter-vertical:hover {
  cursor: row-resize;
}

I thought it would be nice to see this in the library as well.