.resize-handle-wrapper {
	/* height: 30px; */
	width: 100%;
	cursor: grab;
}

.resize-handle {
	height: 10px;
	background: var(--app-secondary-color);
	width: 100%;
	text-align: center;
	display: flex;
}

.resize-handle div {
	width: 40px;
	height: 4px;
	background: var(--gray-tertiary);
	margin: 3px auto;
	border-radius: 2px;
}

/* ResizeHandleBottomLeft */
/* Dafür sollte das umschließende Element (Parent) "position: relative" sein.*/
.resize-handle-wrapper-bottom-left {
	height: 20px;
	width: 20px;
	cursor: nesw-resize;
	position: absolute;
	bottom: 4px;
	left: 4px;
	transform: rotate(90deg);
}
