mirror of https://github.com/ppy/osu
Adjust margins/paddings
This commit is contained in:
parent
84392d0d13
commit
024ccc75ee
|
@ -29,6 +29,10 @@ public abstract class CommentRepliesButton : CompositeDrawable
|
|||
private void load()
|
||||
{
|
||||
AutoSizeAxes = Axes.Both;
|
||||
Margin = new MarginPadding
|
||||
{
|
||||
Vertical = 2
|
||||
};
|
||||
InternalChildren = new Drawable[]
|
||||
{
|
||||
new CircularContainer
|
||||
|
|
|
@ -83,7 +83,7 @@ private void load()
|
|||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
AutoSizeAxes = Axes.Y,
|
||||
Padding = new MarginPadding(margin) { Left = margin + 5 },
|
||||
Padding = new MarginPadding(margin) { Left = margin + 5, Top = Comment.IsTopLevel ? 10 : 0 },
|
||||
Child = content = new GridContainer
|
||||
{
|
||||
RelativeSizeAxes = Axes.X,
|
||||
|
|
Loading…
Reference in New Issue