1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

add GridContainer in wiki main page

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-23 18:52:20 +07:00
parent 4068881096
commit 8389d90f7e
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -30,9 +30,13 @@ namespace osu.Game.Overlays.Wiki
Children = new Drawable[] Children = new Drawable[]
{ {
createBlurb(html) createBlurb(html),
new GridContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
},
}; };
AddRange(createPanels(html));
} }
private Container createBlurb(HtmlDocument html) private Container createBlurb(HtmlDocument html)