aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/component/Box.razor
blob: a1a88d3c2eda424a83bc87ccbbfd944eb855932b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@using Sandbox.Razor
@using Sandbox.UI;

@namespace MurderGame
@inherits Panel

<style>
box {
	background-color: rgba(0, 0, 0, 0.40);
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 10px;
	padding: 10px;
	backdrop-filter-blur: 2px;
}
</style>