aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/component/Box.razor
blob: ee0b1e47eaacf591ee076b6297f9cce3768ae455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@namespace MurderGame
@inherits Sandbox.UI.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>