[call-me] - fix size

This commit is contained in:
Miroslav Pejic
2026-02-11 21:35:18 +01:00
parent 38d54d8adf
commit c97587fcc2
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "call-me",
"version": "1.2.95",
"version": "1.2.96",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "call-me",
"version": "1.2.95",
"version": "1.2.96",
"license": "AGPLv3",
"dependencies": {
"@ngrok/ngrok": "1.7.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "call-me",
"version": "1.2.95",
"version": "1.2.96",
"description": "Your Go-To for Instant Video Calls",
"author": "Miroslav Pejic - miroslav.pejic.85@gmail.com",
"license": "AGPLv3",
+3 -3
View File
@@ -2014,7 +2014,7 @@ function renderUserList() {
if (isInActiveCall) {
// Show hang-up button only if in active call (user has answered)
actionBtnEl.className = 'btn btn-custom btn-danger btn-s hangup-user-btn';
actionBtnEl.className = 'btn btn-custom btn-danger btn-m hangup-user-btn';
actionBtnEl.innerHTML = '<i class="fas fa-phone-slash"></i>';
actionBtnEl.title = `Hang up call with ${user}`;
actionBtnEl.addEventListener('click', (e) => {
@@ -2028,7 +2028,7 @@ function renderUserList() {
});
} else {
// Show call button if not in active call
actionBtnEl.className = 'btn btn-custom btn-warning btn-s call-user-btn';
actionBtnEl.className = 'btn btn-custom btn-warning btn-m call-user-btn';
actionBtnEl.innerHTML = '<i class="fas fa-phone"></i>';
actionBtnEl.title = `Call ${user}`;
actionBtnEl.addEventListener('click', (e) => {
@@ -2044,7 +2044,7 @@ function renderUserList() {
// Send file button
const sendFileBtn = document.createElement('button');
sendFileBtn.className = 'btn btn-custom btn-secondary btn-s';
sendFileBtn.className = 'btn btn-custom btn-secondary btn-m';
sendFileBtn.innerHTML = '<i class="fas fa-paperclip"></i>';
sendFileBtn.style.marginRight = '10px';
sendFileBtn.style.cursor = 'pointer';