From 37a2324a81d5256ab8985332ffa5eda46138d377 Mon Sep 17 00:00:00 2001 From: Vincent Fretin Date: Sun, 28 Jun 2026 11:46:50 +0200 Subject: [PATCH] Move the CodeSandbox "Open Sandbox" button to the top left so it does not overlap the VR/AR buttons --- src/style/aframe.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/style/aframe.css b/src/style/aframe.css index de875f6116c..563c6ded477 100644 --- a/src/style/aframe.css +++ b/src/style/aframe.css @@ -405,3 +405,9 @@ a-scene audio { .a-dom-overlay:not(.a-no-style)>* { pointer-events: auto; } + +/* Move the CodeSandbox "Open Sandbox" button to the top left so it does not + * overlap the VR/AR buttons */ +iframe[id^="sb__open-sandbox"] { + inset: 16px auto auto 16px; +}