Fixed Font Size

This commit is contained in:
SujithThirumalaisamy 2025-04-07 23:32:53 +05:30
parent 89567b4e71
commit a585842062
2 changed files with 15 additions and 1 deletions

View File

@ -176,7 +176,12 @@ export const ParticipantTile: (
) : (
<span className="mic-icon mic-off">mic_off</span>
)}
<span className="participant-name">{name || identity}</span>
<span className="participant-name">
{name || identity}
{trackReference.source === Track.Source.ScreenShare
? ' (Screen Share)'
: ''}
</span>
</div>
</div>
<ConnectionQualityIndicator className="lk-participant-metadata-item" />

View File

@ -56,6 +56,15 @@
border-radius: 50%;
}
.lk-carousel .avatar-container {
width: 60px;
height: 60px;
}
.lk-carousel .avatar-initials {
font-size: 35px;
}
.avatar-container {
position: absolute;
top: 50%;