mirror of https://github.com/ppy/osu
Update ruleset selector design
This commit is contained in:
parent
a5781d7fc5
commit
05de65937b
|
@ -22,7 +22,7 @@ public OverlayRulesetSelector()
|
|||
{
|
||||
AutoSizeAxes = Axes.Both,
|
||||
Direction = FillDirection.Horizontal,
|
||||
Spacing = new Vector2(25, 0),
|
||||
Spacing = new Vector2(20, 0),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
using osuTK.Graphics;
|
||||
using osuTK;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Extensions.Color4Extensions;
|
||||
|
||||
namespace osu.Game.Overlays
|
||||
{
|
||||
|
@ -53,6 +54,8 @@ public OverlayRulesetTabItem(RulesetInfo value)
|
|||
Origin = Anchor.Centre,
|
||||
Anchor = Anchor.Centre,
|
||||
Text = value.Name,
|
||||
Font = OsuFont.GetFont(size: 14),
|
||||
ShadowColour = Color4.Black.Opacity(0.75f)
|
||||
}
|
||||
},
|
||||
new HoverClickSounds()
|
||||
|
|
Loading…
Reference in New Issue