Rework padding

This commit is contained in:
Andrei Zavatski
2020-08-02 21:44:34 +03:00
parent 7d83cdbf1c
commit bddc61756a
3 changed files with 16 additions and 7 deletions

View File

@ -36,7 +36,13 @@ namespace osu.Game.Tests.Visual.UserInterface
RelativeSizeAxes = Axes.Both,
Colour = colourProvider.Background4
},
new DashboardBeatmapListing(new_beatmaps, popular_beatmaps)
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Horizontal = 10 },
Child = new DashboardBeatmapListing(new_beatmaps, popular_beatmaps)
}
}
});
}