As designed Incorrect elements distance

cimad

Member
Affected version
2.1.0
When there are few elements, the distance does not seem to be correct.

May need change the core_list.less template.

Search for:
Code:
justify-content: space-between;

And change to:

Code:
justify-content: space-around;
 

Attachments

  • 20190131_000532.webp
    20190131_000532.webp
    32.4 KB · Views: 16
This spacing is intentional. For these list types, they can support an arbitrary number of entries and they can wrap to multiple lines. space-around is preferred for these cases.
 
Top Bottom