aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/weapon/Crosshair.razor
blob: f2196dbc767e8ab55491275416ddb0da4e0fe09b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@namespace MurderGame
@inherits Sandbox.UI.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>