File size: 645 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
.react-page-plugins-content-spacer {
border-bottom: none;
position: relative;
}
.react-page-editable .react-page-plugins-content-spacer {
outline: 1px dashed var(--minBlack);
}
.react-page-editable-mode-preview .react-page-plugins-content-spacer {
outline: none;
}
.react-page-plugins-content-spacer
> .react-resizable
> .react-resizable-handle:before,
.react-page-plugins-content-spacer
> .react-resizable
> .react-resizable-handle:hover:before {
content: ' ';
position: absolute;
text-align: center;
width: 100%;
bottom: 0;
right: 0;
cursor: n-resize;
line-height: 12px;
font-size: 1.5em;
height: 24px;
}
|