mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Merge pull request #5807 from smoogipoo/remove-more-margins
Remove bottom margin from show more button
This commit is contained in:
@ -124,14 +124,12 @@ namespace osu.Game.Overlays.Profile.Sections
|
|||||||
|
|
||||||
private class ChevronIcon : SpriteIcon
|
private class ChevronIcon : SpriteIcon
|
||||||
{
|
{
|
||||||
private const int bottom_margin = 2;
|
|
||||||
private const int icon_size = 8;
|
private const int icon_size = 8;
|
||||||
|
|
||||||
public ChevronIcon()
|
public ChevronIcon()
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre;
|
Anchor = Anchor.Centre;
|
||||||
Origin = Anchor.Centre;
|
Origin = Anchor.Centre;
|
||||||
Margin = new MarginPadding { Bottom = bottom_margin };
|
|
||||||
Size = new Vector2(icon_size);
|
Size = new Vector2(icon_size);
|
||||||
Icon = FontAwesome.Solid.ChevronDown;
|
Icon = FontAwesome.Solid.ChevronDown;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user