Commit 70283a9f authored by MMP0's avatar MMP0
Browse files

Expand the hit area of resize handle

parent e1b37a06
Loading
Loading
Loading
Loading
+13 −6
Original line number Diff line number Diff line
@@ -1063,12 +1063,19 @@ div.accordions > div.input-accordion.input-accordion-open{


.resize-handle {
    position: relative;
	cursor: col-resize;
	grid-column: 2 / 3;
	min-width: 8px !important;
	max-width: 8px !important;
	min-width: 16px !important;
	max-width: 16px !important;
	height: 100%;
}

.resize-handle::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7.5px;
    border-left: 1px dashed var(--border-color-primary);
	user-select: none;
	margin-left: 8px;
}