diff --git a/src/core/islands/FloatingButton.mjs b/src/core/islands/FloatingButton.mjs
index 61f9e44..7ca2db7 100644
--- a/src/core/islands/FloatingButton.mjs
+++ b/src/core/islands/FloatingButton.mjs
@@ -13,17 +13,10 @@ const setupWrapper = () => {
const addToDom = () => {
const $notionAi = document.querySelector(notionAi);
if (!$notionAi) return;
- const gap = 12,
- computedStyles = getComputedStyle($notionAi),
- visible = computedStyles.getPropertyValue("display") !== "none",
- width = computedStyles.getPropertyValue("width"),
- right = computedStyles.getPropertyValue("right"),
- offset = visible ? parseInt(width) + parseInt(right) + gap : 26,
- $wrapper = html`
`;
+ const $wrapper = html``;
removeMutationListener(addToDom);
$notionAi.after($wrapper);
res($wrapper);
@@ -35,6 +28,7 @@ const setupWrapper = () => {
addFloatingButton = async ($btn) => {
if (document.contains($btn)) return;
(await setupWrapper()).prepend($btn);
+ // button positioning is calculated by panel
},
removeFloatingButton = ($btn) => $btn.remove();
diff --git a/src/core/islands/Panel.mjs b/src/core/islands/Panel.mjs
index 26f00d0..02b8636 100644
--- a/src/core/islands/Panel.mjs
+++ b/src/core/islands/Panel.mjs
@@ -89,7 +89,7 @@ function Panel({
transitionDuration = 300,
}) {
const { modDatabase, isEnabled } = globalThis.__enhancerApi,
- { html, useState, addKeyListener } = globalThis.__enhancerApi,
+ { html, useState, addKeyListener, MODS_LOADED } = globalThis.__enhancerApi,
{ addMutationListener, removeMutationListener } = globalThis.__enhancerApi,
$panelToggle = html`