Skip to content
Snippets Groups Projects
Unverified Commit 83c9765d authored by Samuel Couillard's avatar Samuel Couillard Committed by GitHub
Browse files

Add Start Meeting button (#4794)

* Add Start Meeting btn

* Change px to rem
parent 56b265e4
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,11 @@ body {
box-shadow: none;
}
// aligns the "Copy Join" btn with the "Start Meeting" btn
.start-meeting-btn {
min-height: 2.56rem;
}
// Smoothen bootstrap transition
.fade {
transition: opacity 0.3s ease !important;
......
......@@ -75,7 +75,7 @@ export default function Room() {
}
</Col>
<Col>
<Button variant="brand" className="mt-1 mx-2 float-end" onClick={startMeeting.mutate} disabled={startMeeting.isLoading}>
<Button variant="brand" className="start-meeting-btn mt-1 mx-2 float-end" onClick={startMeeting.mutate} disabled={startMeeting.isLoading}>
{startMeeting.isLoading && <Spinner className="me-2" />}
{ room?.online ? (
t('room.meeting.join_meeting')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment