.user-thumb { display: block; position: relative; box-sizing: border-box; div { display: flex; align-items: center; .user-thumb-avatar { background: #E4E8ED; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; height: 50px; width: 50px; margin-right: 16px; border-radius: 50%; overflow: hidden; &.user-thumb-avatar__size { height: 44px; width: 44px; } >img, object { object-fit: cover; object-position: center; } >img { max-height: 100%; max-width: 100%; position: absolute; top: 0; left: 0; } >object { max-height: 40%; max-width: 40%; } } .user-thumb-content { flex: 1 1 auto; .user-thumb-content__name-and-icon { display: flex; justify-content: flex-start; align-items: center; .name { font-size: 14px; font-weight: 600; flex: 0 1 auto; letter-spacing: 0.38px; } .icon { margin-left: 10px; &::before { font-size: 15px; } } } .user-thumb__sub-text { color: red; } } } }