Closed BertrandPodevin closed 1 week ago
When there is no userTile-content-info, the element keep it's size, wich could trigger alignment issues :
userTile-content-info
With userTile-content-info
Without userTile-content-info
The element should be allowed to shrink
This can be done by replacing
.userTile .avatar { height: calc(var(--components-userTile-title-lineHeight) + var(--components-userTile-info-lineHeight)); }
with
.userTile .avatar { max-height: calc(var(--components-userTile-title-lineHeight) + var(--components-userTile-info-lineHeight)); }
https://github.com/LuccaSA/lucca-front/pull/3220
When there is no
userTile-content-info
, the element keep it's size, wich could trigger alignment issues :With userTile-content-info
Without userTile-content-info
The element should be allowed to shrink
This can be done by replacing
with