Hello guys,
I have a small question: I want to display a list of avatars with centered text
something like
and I would also like the text to wrap around multiple line for responsive purposes.
The issue with the standard item-avatar
and item-thumbnail
classes is that they are designed for two lines title+description, which is not what I need here…
For now on I created a small subclass to center everything using flexbox:
.item-avatar-centered {
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
}
but I wonder if there is a more “standard” way to achieve this layout ?
If anyone has insight on this, thx in advance