Skip to content

Commit d5a0480

Browse files
feat: add mobile responsive for meeting status indicator ml-282 (#379)
* feat: add meeting status update ml-282 * feat: add migration ml-282 * feat: add meeting ended status handling ml-282 * fix: change visibility condition for stop recording button ml-282 * refactor: update migration ml-282 * refactor: update meeting.service ml-282 * feat: update meeting-status-badge ml-282 * fix: update down method in migration ml-282 * refactor: move types to a separate file in meeting-status-badge ml-282 * fix: update db migration ml-282 * feat: create helper for meeting status handling ml-282 * refactor: update meeting.service ml-282 * refactor: update meeting-status-badge ml-282 * refactor: update properties in meeting-status-badge ml-282 * refactor: move socket initilization back ml-282 * feat: add mobile responsive for meeting status badge ml-282 --------- Co-authored-by: Farid Shabanov <[email protected]>
1 parent 9559be5 commit d5a0480

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

apps/bot/src/libs/modules/zoom/base-zoom-bot.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ class BaseZoomBot {
313313
public async run(): Promise<void> {
314314
try {
315315
this.browser = await puppeteer.launch(this.config.getLaunchOptions());
316+
this.logger.info("emmiting joining to meeting");
316317
this.page = await this.browser.newPage();
317318
await this.page.setUserAgent(USER_AGENT);
318319
this.initSocket();

apps/frontend/src/assets/css/variables.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
--color-brand-hover: rgb(15 143 178);
1717
--color-accent-1: rgb(255 94 94);
1818
--color-accent-2: rgb(170 235 152);
19+
--color-accent-3: rgb(9 196 65);
1920
--border-radius-sm: 5px;
2021
--border-radius-md: 8px;
2122
--border-radius-lg: 10px;

apps/frontend/src/libs/components/meeting-status-badge/styles.module.css

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
}
151151

152152
.meeting-status-badge--success {
153-
--meeting-status-badge-foreground: var(--color-accent-2);
153+
--meeting-status-badge-foreground: var(--color-accent-3);
154154
}
155155

156156
.meeting-status-badge--warning {
@@ -212,3 +212,17 @@
212212
height: 12px;
213213
}
214214
}
215+
216+
@media (width <= 576px) {
217+
.meeting-status-badge {
218+
gap: 0;
219+
padding: 0;
220+
background: none;
221+
border: none;
222+
box-shadow: none;
223+
}
224+
225+
.meeting-status-badge__label {
226+
display: none;
227+
}
228+
}

0 commit comments

Comments
 (0)