Skip to content

Commit

Permalink
[mirotalkwebrtc] - add css class
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed May 13, 2024
1 parent 8001b48 commit 3907a86
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions frontend/css/client.css
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,16 @@ tr:nth-child(even) {
-moz-transform: translate(-50%, -50%);
}

.txt-green {
color:rgb(8, 189, 89);
}

.txt-qr {
font-family: Arial, Helvetica, sans-serif;
color: var(--text-color);
background: transparent;
}

.fadeIn {
-webkit-animation: fadeIn ease-in 1;
-moz-animation: fadeIn ease-in 1;
Expand Down
6 changes: 3 additions & 3 deletions frontend/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -603,9 +603,9 @@ function copyRoom(id) {
<canvas id="qrRoom"></canvas>
</div>
<br/>
<p style="color:rgb(8, 189, 89);">Join from your mobile device</p>
<p style="background:transparent; color:white; font-family: Arial, Helvetica, sans-serif;">No need for apps, simply capture the QR code with your mobile camera Or Invite someone else to join by sending them the following URL</p>
<p style="color:rgb(8, 189, 89);">${roomURL}</p>`,
<p class="txt-green">Join from your mobile device</p>
<p class="txt-qr">No need for apps, simply capture the QR code with your mobile camera Or Invite someone else to join by sending them the following URL</p>
<p class="txt-green">${roomURL}</p>`,
);
makeRoomQR(roomURL);
},
Expand Down

0 comments on commit 3907a86

Please sign in to comment.