Use margin instead of padding

This commit is contained in:
aitani9 2021-06-21 13:42:15 -07:00
parent 5b9bf54f1f
commit 36e459e97e
1 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,9 @@ public bool UserHoveringArea
protected OverlayStreamItem(T value)
: base(value)
{
Height = 60;
Width = 100;
Padding = new MarginPadding(5);
Height = 50;
Width = 90;
Margin = new MarginPadding(5);
}
[BackgroundDependencyLoader]