sasalka/Code/UI/GUI.razor
2025-06-08 23:47:32 +03:00

26 lines
374 B
Plaintext

@using Sandbox
@using Sandbox.UI
@inherits PanelComponent
@namespace Sandbox
<root>
<div class="crosshair"></div>
</root>
<style>
.crosshair {
position: absolute;
top: 50%;
left: 50%;
width: 4px;
height: 4px;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}
</style>
@code {
}