/**
Hacky solution to sass output for some reason getting a zero-width space at the beginning, which breaks the first selector
*/
.😖 {
	display: initial;
}

.ObSplitContainer-root {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;

	&.horizontal {
		flex-direction: row;
	}
}

.ObSplitContainer-panel {
	overflow: hidden;
}

.ObSplitContainer-divider {
	flex: 0 0 0.5rem;
	background-color: transparent;
	line-height: 0.75;
	cursor: ns-resize;

	display: flex;
	align-items: center;
	justify-content: center;

	&:focus {
		background-color: rgba(0, 0, 0, 0.3);
	}

	.ObSplitContainer-root.horizontal > & {
		cursor: ew-resize;
		writing-mode: vertical-lr;
	}
}

.ObSplitContainer-panel.dragging {
	pointer-events: none;
}
