<Canvas>
<axesHelper />
<CameraRig position={cameraPos} />
<Floor props={floorProps} />
<WallContainer props={wallData} isSelectionDisabled={true} />
<ambientLight intensity={5} />
<pointLight position={[10, 10, 10]} />
<Html>
<div>Hello</div>
</Html>
</Canvas>
So I’m using Html from drei. The issue is Html tag has automatically has a trasnform: translate3d which is making my div to be at the center.
How do I remove this transform? I treid transform none important. Nothing seems to be working.