// Add clickable overlay to blocks with nesting.
// This makes it easy to select all layers of the block.
.block-editor-block-list__layout.has-overlay {
	&::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: z-index(".block-editor-block-list__layout.has-overlay::after");
	}
}
