1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 20:32:55 +08:00

Adjust sizings and paddings

This commit is contained in:
smoogipoo 2021-08-17 17:13:25 +09:00
parent 4b198d14eb
commit 6416e64e06
2 changed files with 12 additions and 3 deletions

View File

@ -88,6 +88,11 @@ namespace osu.Game.Screens.OnlinePlay.Match
new GridContainer
{
RelativeSizeAxes = Axes.Both,
RowDimensions = new[]
{
new Dimension(),
new Dimension(GridSizeMode.AutoSize)
},
Content = new[]
{
// Padded main content (drawable room + main content)
@ -96,7 +101,11 @@ namespace osu.Game.Screens.OnlinePlay.Match
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = 60 },
Padding = new MarginPadding
{
Horizontal = WaveOverlayContainer.WIDTH_PADDING,
Bottom = 30
},
// Main content
Child = new GridContainer
{

View File

@ -142,8 +142,8 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding
{
Horizontal = HORIZONTAL_OVERFLOW_PADDING + 55,
Vertical = 20
Horizontal = 10,
Vertical = 10
},
Child = new GridContainer
{