1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 19:27:24 +08:00

Adjust padding to avoid overlap with card border when expanded

This commit is contained in:
Dean Herbert 2022-11-03 14:03:28 +09:00
parent 66a6084d3f
commit 07bfac40fa

View File

@ -95,7 +95,9 @@ namespace osu.Game.Beatmaps.Drawables.Cards
Child = buttons = new Container<BeatmapCardIconButton>
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding(3),
// Padding of 4 avoids touching the card borders when in the expanded (ie. showing difficulties) state.
// Left override allows the buttons to visually be wider and look better.
Padding = new MarginPadding(4) { Left = 2 },
Children = new BeatmapCardIconButton[]
{
new FavouriteButton(beatmapSet)