fix(panel): restore resizeability

css width var had been applied to panel and to panel parent separately, freezing the panel at an initial pos
This commit is contained in:
dragonwocky 2023-08-16 00:45:33 +10:00
parent a75a2d2608
commit aed0081990
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -210,6 +210,7 @@ function Panel({
if (!$panel.hasAttribute("open")) width = 0;
const $cssVarTarget = $panel.parentElement || $panel;
$cssVarTarget.style.setProperty("--panel--width", `${width}px`);
if ($cssVarTarget !== $panel) $panel.style.removeProperty("--panel--width");
repositionHelp(width);
};
$panel.open = () => {