aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/weapon/Crosshair.razor
blob: 2dc5db18de2e8e954d179b711aa895fdcd15d5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@using Sandbox;
@using Sandbox.UI;

@namespace MurderGame
@inherits Panel

<style>
crosshair {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.dot {
	border-radius: 3px;
	width: 6px;
	height: 6px;
	background-color: white;
}
</style>

<div class="dot"></div>