Match web border height

This commit is contained in:
TheWildTree 2020-01-29 22:25:56 +01:00
parent 87521f35ed
commit f7c38da030

View File

@ -101,7 +101,7 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
{ {
Masking = true, Masking = true,
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,
Height = 5, Height = 2,
Child = lineBackground = new Box Child = lineBackground = new Box
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
@ -128,10 +128,10 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
} }
[BackgroundDependencyLoader] [BackgroundDependencyLoader]
private void load(OsuColour colours) private void load(OverlayColourProvider colourProvider)
{ {
lineBackground.Colour = colours.Yellow; lineBackground.Colour = colourProvider.Highlight1;
DescriptionText.Colour = colours.GreySeafoamLighter; DescriptionText.Colour = colourProvider.Foreground1;
} }
} }
} }