22 lines
555 B
SCSS
22 lines
555 B
SCSS
/**
|
|
* The following styles get applied inside the editor only.
|
|
*
|
|
* Replace them with your own styles or remove the file completely.
|
|
*/
|
|
|
|
.wp-block-create-block-lcp-sidecontent {
|
|
border: 1px dotted #f00;
|
|
}
|
|
|
|
#lcp-sidecontent {
|
|
position: absolute; /* or fixed depending on your JS logic */
|
|
left: 0;
|
|
background: #fff;
|
|
width: 340px; /* Fixed width of 340px */
|
|
height: 100%;
|
|
overflow: scroll;
|
|
z-index: 2;
|
|
border-right: 2px solid #eee;
|
|
outline: 0;
|
|
top: var(--my-top); /* Dynamically controlled top position via JS */
|
|
} |