1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 02:29:53 +08:00

Use spacing instead of bottom margin

This commit is contained in:
Henry Lin
2022-02-02 19:02:29 +08:00
Unverified
parent b0023b9809
commit 1e19c7046a
@@ -98,7 +98,8 @@ namespace osu.Game.Screens.Ranking.Statistics
rows = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(30, 15)
}
}
};
@@ -123,7 +124,6 @@ namespace osu.Game.Screens.Ranking.Statistics
Origin = Anchor.TopCentre,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Margin = new MarginPadding { Bottom = 15 },
Content = new[]
{
columnsToDisplay?.Select(c => new StatisticContainer(c)