1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-21 19:52:55 +08:00

fix font size description

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-08-10 14:23:15 +07:00
parent b3fbf52571
commit f7a02219b8
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -78,12 +78,12 @@ namespace osu.Game.Overlays.Changelog
new OsuSpriteText new OsuSpriteText
{ {
Text = ChangelogStrings.SupportHeading, Text = ChangelogStrings.SupportHeading,
Font = OsuFont.GetFont(size: 22, weight: FontWeight.Light), Font = OsuFont.GetFont(size: 20, weight: FontWeight.Light),
Margin = new MarginPadding { Bottom = 20 }, Margin = new MarginPadding { Bottom = 20 },
}, },
supportLinkText = new LinkFlowContainer(t => supportLinkText = new LinkFlowContainer(t =>
{ {
t.Font = t.Font.With(size: 17.5f); t.Font = t.Font.With(size: 14);
}) })
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
@ -91,7 +91,7 @@ namespace osu.Game.Overlays.Changelog
}, },
supportNoteText = new TextFlowContainer(t => supportNoteText = new TextFlowContainer(t =>
{ {
t.Font = t.Font.With(size: 15); t.Font = t.Font.With(size: 12);
}) })
{ {
Margin = new MarginPadding { Top = 10 }, Margin = new MarginPadding { Top = 10 },