thread-user-card.less 315 B

123456789101112131415161718192021
  1. .thread-user-card {
  2. display: flex;
  3. align-items: center;
  4. }
  5. .thread-user-card-media {
  6. flex: 0;
  7. margin-right: floor(@grid-gutter-width * .5;);
  8. img {
  9. border-radius: @border-radius-small;
  10. }
  11. }
  12. .thread-user-card-body {
  13. flex: 1;
  14. white-space: nowrap;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. }