ui/crosshair.razor

A simple UI Razor file for an in-game crosshair. It inherits PanelComponent and renders a centered circular div styled as a small gray dot.

@inherits PanelComponent

<root>
<div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
outline: 1px solid gray; width: .25vw; height: .25vw; border-radius: 50%; opacity: 50%;"> </div>
</root>