1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 08:50:00 +08:00

Adjust DrawableTeamTitleWithHeader to match new layout

This commit is contained in:
Dean Herbert
2023-10-31 12:44:43 +09:00
Unverified
parent 87c9df937f
commit feeb95e4c3
@@ -18,21 +18,12 @@ namespace osu.Game.Tournament.Components
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 10),
Spacing = new Vector2(0, 5),
Children = new Drawable[]
{
new DrawableTeamHeader(colour),
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5),
Children = new Drawable[]
{
new DrawableTeamTitle(team),
new DrawableTeamSeed(team),
}
}
new DrawableTeamTitle(team),
new DrawableTeamSeed(team),
}
};
}