From 3c7cd97d429e0059e5db7e68c3162eb07928a3d3 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 13 Jul 2017 14:24:08 +0900 Subject: [PATCH] Vertically center "coming soon" text --- osu.Game/Overlays/Profile/ProfileSection.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/osu.Game/Overlays/Profile/ProfileSection.cs b/osu.Game/Overlays/Profile/ProfileSection.cs index 678e79c757..2b5084e321 100644 --- a/osu.Game/Overlays/Profile/ProfileSection.cs +++ b/osu.Game/Overlays/Profile/ProfileSection.cs @@ -7,6 +7,7 @@ using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Shapes; using osu.Game.Graphics; using osu.Game.Graphics.Sprites; +using OpenTK.Graphics; namespace osu.Game.Overlays.Profile { @@ -60,12 +61,13 @@ namespace osu.Game.Overlays.Profile // placeholder Add(new OsuSpriteText { - Text = @"Coming soon!", - TextSize = 36, - Font = @"Exo2.0-RegularItalic", + Text = @"coming soon!", + TextSize = 16, + Font = @"Exo2.0-Medium", + Colour = Color4.Gray, Anchor = Anchor.Centre, Origin = Anchor.Centre, - Margin = new MarginPadding { Bottom = 200 } + Margin = new MarginPadding { Top = 100, Bottom = 100 } }); } }