UNPKG

@wordpress/components

Version:
24 lines (20 loc) 334 B
/** * External dependencies */ import styled from '@emotion/styled'; export const StyledWrapper = styled.div` position: relative; pointer-events: none; &::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; } // Also make nested blocks unselectable. * { pointer-events: none; } `;