We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee1b120 commit f138f55Copy full SHA for f138f55
companion/extension/entrypoints/content.ts
@@ -40,7 +40,7 @@ export default defineContentScript({
40
iframeContainer.style.display = "flex";
41
iframeContainer.style.justifyContent = "flex-end";
42
iframeContainer.style.pointerEvents = "auto";
43
-
+
44
// Create iframe
45
const iframe = document.createElement("iframe");
46
iframe.src = "http://localhost:8081";
@@ -50,7 +50,7 @@ export default defineContentScript({
50
iframe.style.borderRadius = "0";
51
iframe.style.backgroundColor = "white";
52
iframe.style.boxShadow = "-2px 0 10px rgba(0,0,0,0.1)";
53
54
iframeContainer.appendChild(iframe);
55
56
sidebarContainer.appendChild(iframeContainer);
0 commit comments