Tighten mobile meet room header and bottom toolbar layout.
Deploy Ladill Meet / deploy (push) Successful in 50s

Show participant count without labels on phones, cap the title at 40% width, and keep four bottom-nav icons by moving React into More only after speak access is granted.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-03 15:13:22 +00:00
co-authored by Cursor
parent 9943dc9e44
commit 08a1437b44
3 changed files with 60 additions and 20 deletions
+15 -3
View File
@@ -1087,14 +1087,26 @@ function meetRoom() {
return this.inCallParticipants().length;
},
headerParticipantLabel() {
headerParticipantCount() {
if (this.usesStageLayout) {
return String(this.speakerCount());
}
return String(this.participantCount());
},
headerParticipantSuffix() {
if (this.usesStageLayout) {
const count = this.speakerCount();
return count === 1 ? '1 speaker' : `${count} speakers`;
return count === 1 ? ' speaker' : ' speakers';
}
return `${this.participantCount()} in call`;
return ' in call';
},
headerParticipantLabel() {
return this.headerParticipantCount() + this.headerParticipantSuffix();
},
inCallParticipants() {