1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 05:42:54 +08:00

Adjust song select info icon size slightly

Not going to PR this it's just a minor tweak.
This commit is contained in:
Dean Herbert 2024-08-05 17:21:47 +09:00
parent fb8f80f1e2
commit c37f617e1d
No known key found for this signature in database

View File

@ -490,7 +490,7 @@ namespace osu.Game.Screens.Select
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Colour = Color4Extensions.FromHex(@"f7dd55"), Colour = Color4Extensions.FromHex(@"f7dd55"),
Icon = FontAwesome.Regular.Circle, Icon = FontAwesome.Regular.Circle,
Size = new Vector2(0.8f) Size = new Vector2(0.7f)
}, },
statistic.CreateIcon().With(i => statistic.CreateIcon().With(i =>
{ {
@ -498,7 +498,7 @@ namespace osu.Game.Screens.Select
i.Origin = Anchor.Centre; i.Origin = Anchor.Centre;
i.RelativeSizeAxes = Axes.Both; i.RelativeSizeAxes = Axes.Both;
i.Colour = Color4Extensions.FromHex(@"f7dd55"); i.Colour = Color4Extensions.FromHex(@"f7dd55");
i.Size = new Vector2(0.64f); i.Size = new Vector2(0.6f);
}), }),
} }
}, },