Style : gutter cursor style when hover
dearlsh94 opened this issue · 2 comments
dearlsh94 commented
I think it would be better if the cursor changed in the hover state as well as the active state.
(use mouseenter and mouseleave?)
liviu-macsen commented
use css
.gutter-horizontal:hover {
cursor: col-resize;
}
dearlsh94 commented
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.