Changes to blocks

This commit is contained in:
Jeremy Rangel
2024-12-22 15:20:12 -08:00
parent cfbb860bf9
commit f3fbe0fa32
25 changed files with 612 additions and 1035 deletions

View File

@ -7,3 +7,16 @@
.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 */
}