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

Fix multiple notice boxes having no spacing

This commit is contained in:
Joseph Madamba 2023-03-11 21:18:56 -08:00
parent ea88aee41f
commit 6e5b1280b7
No known key found for this signature in database
GPG Key ID: 8B746C7BDDF0BD76

View File

@ -12,6 +12,7 @@ using osu.Framework.Graphics.Shapes;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Resources.Localisation.Web;
using osuTK;
namespace osu.Game.Overlays.Wiki.Markdown
{
@ -26,6 +27,7 @@ namespace osu.Game.Overlays.Wiki.Markdown
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Direction = FillDirection.Vertical;
Spacing = new Vector2(10);
foreach (object line in yamlFrontMatterBlock.Lines)
{