Merge branch 'dev'

This commit is contained in:
Jeff Emmett 2026-02-27 18:10:29 -08:00
commit 186a1695c1
1 changed files with 7 additions and 1 deletions

View File

@ -117,7 +117,7 @@
#toolbar-panel {
position: fixed;
top: 108px;
left: calc(68px + 12px + 8px);
/* left is set dynamically by openToolbarPanel() */
min-width: 180px;
max-height: calc(100vh - 130px);
background: white;
@ -2744,6 +2744,12 @@
toolbarEl.querySelectorAll(".toolbar-group").forEach(g => g.classList.remove("open"));
group.classList.add("open");
activeToolbarGroup = group;
// Position panel to the right of toolbar (no overlap) — desktop only
if (window.innerWidth > 768) {
const toolbarRect = toolbarEl.getBoundingClientRect();
toolbarPanel.style.left = (toolbarRect.right + 8) + "px";
}
toolbarPanel.classList.add("panel-open");
}