fix: reader avatars not showing photos in forum seen-by section
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

Added CSS rule for .reader-avatar img with absolute positioning
to properly display avatar photos inside the 28px circles.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-04-10 08:10:54 +02:00
parent 4b4f57c060
commit 0d02269bf6

View File

@ -829,6 +829,16 @@
position: relative;
}
.reader-avatar img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
.reader-avatar[data-name]::after {
content: attr(data-name);
position: absolute;