svelte-resizable-columns
Version:
Svelte JS action for resizing HTML table columns
21 lines • 389 B
CSS
.rc-handle-container {
position: relative;
}
.rc-handle,
.rc-handle-noresize {
position: absolute;
width: 7px;
margin-left: -3px;
z-index: 2;
}
.rc-handle {
cursor: ew-resize;
}
table.rc-table-resizing {
cursor: ew-resize;
}
table.rc-table-resizing thead,
table.rc-table-resizing thead > th,
table.rc-table-resizing thead > th > a {
cursor: ew-resize;
}