mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 12:49:03 +00:00
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:
parent
a75a2d2608
commit
aed0081990
@ -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 = () => {
|
||||
|
Loading…
Reference in New Issue
Block a user