@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
19 lines (16 loc) • 344 B
CSS
.gutter {
background-repeat: no-repeat;
background-position: 50%;
transition: background-color, transform, 0.3s;
flex-basis: 3px ;
}
.gutter:hover {
transform: scaleX(1.5);
background-color: #1a53ff;
}
.gutter.gutter-horizontal {
cursor: col-resize;
}
.gutter.gutter-vertical {
cursor: row-resize;
}