Hi⦠Iāve just noticed that the AR and VR buttons are placed just out of view in the iframe that Iāve used for displaying my project (tested using Chrome on a Moto G9).
Is there anything I can change to move them up a little?
Original Post on Discord
by user 908977119781060648
You can move them up via css (see src/styles/style.css the part about .webxr-buttons
)
Fab, thank you

by user 908977119781060648
They should be just positioned absolute inside the iframe - could it be that the iframe is larger than whatās shown here and doesnāt really fit into its bounds?
Quite possibly @herbstšµ. The iframe style is:-
iframe{
display: block;
height: 100vh;
width: 100vw;
border: none;
background: black;
}
by user 908977119781060648
Itās not the same link as you posted in showcase, right?
Might already be the issue - 100vh in most browsers includes the address bar height, so the iframe here would extend down the same as the address bar is high
If you want āactual usable spaceā use 100%
Perfect solution. Many thanks @herbstā:cactus:

by user 908977119781060648