Match web border height

This commit is contained in:
TheWildTree 2020-01-29 22:25:56 +01:00
parent 87521f35ed
commit f7c38da030
1 changed files with 4 additions and 4 deletions

View File

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