aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/weapon/Crosshair.razor
blob: 92cdcd3704e8623634650cae2daf3245f14d9623 (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>