mirror of https://github.com/ppy/osu
Use margin instead of padding
This commit is contained in:
parent
5b9bf54f1f
commit
36e459e97e
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue