Reduce padding on chat lines to give more breathing room

This commit is contained in:
Dean Herbert 2024-07-30 17:00:26 +09:00
parent 71649005bf
commit 4557ad43d5
No known key found for this signature in database

View File

@ -61,7 +61,7 @@ namespace osu.Game.Overlays.Chat
Padding = new MarginPadding { Bottom = 5 },
Child = ChatLineFlow = new FillFlowContainer
{
Padding = new MarginPadding { Horizontal = 10 },
Padding = new MarginPadding { Left = 3, Right = 10 },
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,