From 7e9005e338acefb9f8dbb8d997bd11d56adb2cd9 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Thu, 9 Apr 2026 23:09:38 +0200 Subject: [PATCH] fix(web): remove forced transparent background from IframeSection to prevent visibility issues --- apps/web/src/components/IframeSection.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/src/components/IframeSection.tsx b/apps/web/src/components/IframeSection.tsx index c010b55..316186c 100644 --- a/apps/web/src/components/IframeSection.tsx +++ b/apps/web/src/components/IframeSection.tsx @@ -493,7 +493,6 @@ export const IframeSection: React.FC = ({ style.textContent = ` *::-webkit-scrollbar { display: none !important; } * { -ms-overflow-style: none !important; scrollbar-width: none !important; } - body { background: transparent !important; } `; iframe.contentDocument.head.appendChild(style); setTimeout(updateAmbilight, 600);