.post-replie-view { display: flex; flex-direction: column; gap: 8px; padding: 10px; background-color: rgba(var(--layoutBackgroundColor), 0.7); border-radius: 12px; transition: all 150ms ease-in-out; cursor: pointer; .user { display: flex; flex-direction: row; align-items: center; gap: 7px; .lazy-load-image-background { width: 20px; height: 20px; border-radius: 4px; overflow: hidden; img { width: 100%; height: 100%; object-fit: cover; } } span { display: flex; flex-direction: row; align-items: center; gap: 3px; } } .content { position: relative; width: 100%; overflow: hidden; span { display: flex; flex-direction: row; align-items: center; gap: 3px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } } &:hover { background-color: rgba(var(--layoutBackgroundColor), 0.9); } }